fix: correct POSTGRES_PORT usage

This commit is contained in:
2026-03-08 16:29:42 +07:00
parent e3668ff862
commit 3544e1a271

View File

@@ -7,7 +7,8 @@ services:
POSTGRES_USER: ${POSTGRES_USER:-postgres} POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres} POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
POSTGRES_DB: ${POSTGRES_DB:-postgres} POSTGRES_DB: ${POSTGRES_DB:-postgres}
POSTGRES_PORT: ${POSTGRES_PORT:-5432} ports:
- "${POSTGRES_PORT:-5432}:5432"
volumes: volumes:
- postgres_data:/var/lib/postgresql - postgres_data:/var/lib/postgresql
healthcheck: healthcheck: