Skip to content

Commit

Permalink
Drop image tags
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelLefkowitz committed Oct 20, 2024
1 parent e1e934d commit e806381
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:

- name: Run tests
run: |
docker run --rm -d -p 5432:5432 -e POSTGRES_DB=db -e POSTGRES_USER=user -e POSTGRES_PASSWORD=password postgres:13
docker run --rm -d -p 11211:11211 memcached:1.6.9
docker run --rm -d -p 5432:5432 -e POSTGRES_DB=db -e POSTGRES_USER=user -e POSTGRES_PASSWORD=password postgres
docker run --rm -d -p 11211:11211 memcached
yarn prisma generate --schema ./test/prisma/schema.prisma
yarn prisma migrate dev --schema ./test/prisma/schema.prisma
yarn test
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ docker run --rm -d \
-e POSTGRES_DB=db \
-e POSTGRES_USER=user \
-e POSTGRES_PASSWORD=password \
postgres:13
postgres
```

Define the DATABASE_URL environment variable mentioned in our prisma schema.
Expand Down Expand Up @@ -197,11 +197,11 @@ docker run --rm -d \
-e POSTGRES_DB=db \
-e POSTGRES_USER=user \
-e POSTGRES_PASSWORD=password \
postgres:13
postgres

docker run --rm -d \
-p 11211:11211 \
memcached:1.6.9
memcached
```

```bash
Expand Down

0 comments on commit e806381

Please sign in to comment.