Docker Compose w/ PostgreSQL – psql Password Authentication failed
I set up the PostgreSQL using Docker Compose and the content of the file (compose.yaml) is like so: name: postgres-container services: database: image: postgres restart: always environment: - POSTGRES_PASSWORD // OR POSTGRES_PASSWORD = ${POSTGRES_PASSWORD} volumes: - pgdata:/var/lib/postgresql/data volumes: pgdata: I…