1
0
forked from baron/baron-sso

Set production database defaults in deploy bundle

This commit is contained in:
2026-06-22 18:21:05 +09:00
parent aadc062781
commit 10add98e69
3 changed files with 6 additions and 0 deletions

View File

@@ -6,7 +6,9 @@ services:
image: postgres:17-alpine
container_name: ${COMPOSE_PROJECT_NAME}_db
environment:
- POSTGRES_USER=${DB_USER:-baron}
- POSTGRES_PASSWORD=${DB_PASSWORD}
- POSTGRES_DB=${DB_NAME:-baron_sso}
ports:
- "${DB_PORT}:5432"
volumes:

View File

@@ -6,7 +6,9 @@ services:
image: postgres:17-alpine
container_name: ${COMPOSE_PROJECT_NAME}_db
environment:
- POSTGRES_USER=${DB_USER:-baron}
- POSTGRES_PASSWORD=${DB_PASSWORD}
- POSTGRES_DB=${DB_NAME:-baron_sso}
ports:
- "${DB_PORT}:5432"
volumes:

View File

@@ -91,6 +91,8 @@ TZ=Asia/Seoul
SOURCE_ROOT=.
P=${port_prefix}
DB_PORT=${IMAGE_DEPLOY_DB_PORT}
DB_USER=${DB_USER:-baron}
DB_NAME=${DB_NAME:-baron_sso}
REDIS_PORT=${IMAGE_DEPLOY_REDIS_PORT}
CLICKHOUSE_PORT_HTTP=${IMAGE_DEPLOY_CLICKHOUSE_PORT_HTTP}
CLICKHOUSE_PORT_NATIVE=${IMAGE_DEPLOY_CLICKHOUSE_PORT_NATIVE}