I am trying to install Mezzanine on Docker to test out Docker
I've used this Container with this postgres db, with a few customizations (namely commenting out) on the Mezzanine container and using the start.sh script to include DB info.
When I run these 2 Docker commands:
docker run -P --name some_web -p 80:80 --link some_db:db myapp/mezzanine-docker
db: docker run -d --name="some_db" -e 'PSQL_TRUST_LOCALNET=true' myapp/docker-postgresql:latest
It throws this error: Is the server running on host "127.0.0.1" and accepting TCP/IP connections on port 5432?
Why? Just need a pointer in the right direction.