Skip to content

Commit

Permalink
Fix postgres password in docker-compose file
Browse files Browse the repository at this point in the history
Since we don't use the db yet, it still worked with the wrong PW.
  • Loading branch information
rnestler committed Jan 15, 2025
1 parent df9a1e0 commit 8cffe7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:
build: .
environment:
RAILS_ENV: develop
DATABASE_URL: postgres://postgres:password@db:5432/pbs_develop
DATABASE_URL: postgres://postgres:postgres@db:5432/pbs_develop
SECRET_KEY_BASE: ${SECRET_KEY_BASE}
BASIC_AUTH: admin:password
HITOBITO_API_TOKEN: ${HITOBITO_API_TOKEN}
Expand Down

0 comments on commit 8cffe7d

Please sign in to comment.