fix: read POSTGRES_PASSWORD from .env in docker-compose.yml
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
e2e9ce1591
commit
4fc2ab88dd
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue