Skip to content

Commit

Permalink
Revert docker compose change
Browse files Browse the repository at this point in the history
  • Loading branch information
voidshard committed Mar 9, 2024
1 parent 9c2a744 commit 0fa2f37
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions tests/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ services:
context: ../
dockerfile: tests/Dockerfile.dummyworker
environment:
- DATABASE_URL=postgres://$DATABASE_USER:$DATABASE_PASSWORD@postgres:5432/igor?sslmode=disable&search_path=igor
- DATABASE_USER=igorreadwrite
- DATABASE_PASSWORD=readwrite
- DATABASE_URL=postgres://igorreadwrite:readwrite@postgres:5432/igor?sslmode=disable&search_path=igor
- REDIS_URL=redis:6379
depends_on:
- postgres
Expand All @@ -23,9 +21,7 @@ services:
ports:
- "8100:8100"
environment:
- DATABASE_URL=postgres://$DATABASE_USER:$DATABASE_PASSWORD@postgres:5432/igor?sslmode=disable&search_path=igor
- DATABASE_USER=igorreadwrite
- DATABASE_PASSWORD=readwrite
- DATABASE_URL=postgres://igorreadwrite:readwrite@postgres:5432/igor?sslmode=disable&search_path=igor
- REDIS_URL=redis:6379
- ADDR=0.0.0.0:8100
- DEBUG=true
Expand All @@ -41,9 +37,7 @@ services:
context: ../
dockerfile: Dockerfile.worker
environment:
- DATABASE_URL=postgres://$DATABASE_USER:$DATABASE_PASSWORD@postgres:5432/igor?sslmode=disable&search_path=igor
- DATABASE_USER=igorreadwrite
- DATABASE_PASSWORD=readwrite
- DATABASE_URL=postgres://igorreadwrite:readwrite@postgres:5432/igor?sslmode=disable&search_path=igor
- REDIS_URL=redis:6379
- DEBUG=true
depends_on:
Expand Down

0 comments on commit 0fa2f37

Please sign in to comment.