fix: read POSTGRES_PASSWORD from .env in docker-compose.yml
Some checks are pending
CI / Type Check (push) Waiting to run
CI / Lint (push) Waiting to run
CI / Unit Tests (push) Waiting to run
Deploy / Build & Push Image (push) Waiting to run
Deploy / Deploy to VPS (push) Blocked by required conditions

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Vadym Samoilenko 2026-05-09 20:24:12 +01:00
parent e2e9ce1591
commit 4fc2ab88dd

View file

@ -10,7 +10,7 @@ services:
- '5432:5432'
environment:
POSTGRES_USER: shumiland
POSTGRES_PASSWORD: shumiland # dev only — override via .env in production
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-shumiland}
POSTGRES_DB: shumiland
volumes:
- postgres_data:/var/lib/postgresql/data