Skip to content

Commit

Permalink
Fix POSTGRES_PASSWORD unset error
Browse files Browse the repository at this point in the history
Earlier this year docker-library/postgres introduced a breaking change:
docker-library/postgres#681

adding POSTGRES_HOST_AUTH_METHOD=trust for now to allow demo to start
running. In the long run, we should add production messages for how to
configure passwords and secrets more properly for security.
  • Loading branch information
esquaredly committed Aug 7, 2020
1 parent 24d1a3e commit 0d75941
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ services:
ports:
- 127.0.0.1:5432:5432
restart: always
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
logging:
<<: *logging_default
volumes:
Expand Down

0 comments on commit 0d75941

Please sign in to comment.