Change POSTGRES_DB from template_db to postgres — postgres DB always exists by default

This commit is contained in:
2026-02-16 21:29:14 +00:00
parent 2010a8d4ec
commit 926f941ae3

View File

@@ -13,7 +13,7 @@ services:
- POSTGRES_PORT=5432
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=template_db
- POSTGRES_DB=postgres
- REDIS_HOST=redis
- REDIS_PORT=6379
- APP_VERSION=${APP_VERSION:-1.0.0}
@@ -37,7 +37,7 @@ services:
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=template_db
- POSTGRES_DB=postgres
volumes:
- postgres-data:/var/lib/postgresql/data
expose: