skip to Main Content

docker-compose.yml syntax leads to error in runtime

Is there any difference between these two configs: Config 1: ... environment: - POSTGRES_NAME='postgres' - POSTGRES_USER='postgres' - POSTGRES_PASSWORD='postgres' - POSTGRES_PORT='5432' Config 2: ... environment: - POSTGRES_NAME=postgres - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgres - POSTGRES_PORT=5432 Because, when I try to docker-compose up with…

VIEW QUESTION
Back To Top
Search