Open nmay231 opened 4 years ago
I added the following modification in the docker-compose which solved this issue:
postgres:
restart: always
image: postgres:latest
environment:
POSTGRES_HOST_AUTH_METHOD=trust
ports:
- "5432:5432"
Breaking change was reported in docker-library/postgres
Thanks @kfrajer! That fixed it after a little bit of finagling.
Note to other readers: I did have to list the environment variable as an array item: - POSTGRES_HOST_AUTH_METHOD=trust
I've been following the instructions from your tutorial and everything has (mostly) been going fine. However, when I try to create the db with
docker-compose run web /usr/local/bin/python create_db.py
, it errors out with:(If you need me to paste the full error, let me know)
I originally had docker-machine and docker-compose as the latest versions, but I downgraded to use the exact version in the tutorial.
Let me know what else you need from me and thanks for the awesome tutorial :+1: