Skip to content

Commit

Permalink
fix: update ENV vars used for postgres in docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
rameziophobia committed Aug 4, 2024
1 parent 496d4e4 commit afd0218
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
command: bin/rails server -b 0.0.0.0
environment:
DB_USERNAME: postgres
DB_PASSWORD: postgres
POSTGRES_PASSWORD: postgres
DB_HOST: db
REDIS_URL: redis://redis:6379/0
stdin_open: true
Expand All @@ -44,7 +44,7 @@ services:
command: bundle exec sidekiq -C config/sidekiq.yml
environment:
DB_USERNAME: postgres
DB_PASSWORD: postgres
POSTGRES_PASSWORD: postgres
DB_HOST: db
REDIS_URL: redis://redis:6379/0
stdin_open: true
Expand Down

0 comments on commit afd0218

Please sign in to comment.