forked from erp-dev/erp
giveup7
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -28,8 +28,12 @@ services:
|
|||||||
container_name: pgbouncer
|
container_name: pgbouncer
|
||||||
# 使用环境变量配置,让镜像自动生成配置文件
|
# 使用环境变量配置,让镜像自动生成配置文件
|
||||||
environment:
|
environment:
|
||||||
# 数据库连接配置(格式:数据库名=host=主机 port=端口 dbname=数据库名 user=用户 password=密码)
|
# 数据库连接配置 - 使用单独的环境变量
|
||||||
DATABASES: flower=host=postgres port=${POSTGRES_PORT:-5432} dbname=${POSTGRES_DB:-flower} user=${POSTGRES_USER:-postgres} password=${POSTGRES_PASSWORD:-postgres}
|
DATABASES_HOST: postgres
|
||||||
|
DATABASES_PORT: "${POSTGRES_PORT:-5432}"
|
||||||
|
DATABASES_USER: ${POSTGRES_USER:-postgres}
|
||||||
|
DATABASES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
|
||||||
|
DATABASES_DBNAME: ${POSTGRES_DB:-flower}
|
||||||
# PgBouncer 基本配置
|
# PgBouncer 基本配置
|
||||||
PGBOUNCER_LISTEN_ADDR: 0.0.0.0
|
PGBOUNCER_LISTEN_ADDR: 0.0.0.0
|
||||||
PGBOUNCER_LISTEN_PORT: 6432
|
PGBOUNCER_LISTEN_PORT: 6432
|
||||||
|
|||||||
@@ -25,8 +25,12 @@ services:
|
|||||||
container_name: pgbouncer
|
container_name: pgbouncer
|
||||||
# 使用环境变量配置,让镜像自动生成配置文件
|
# 使用环境变量配置,让镜像自动生成配置文件
|
||||||
environment:
|
environment:
|
||||||
# 数据库连接配置(格式:数据库名=host=主机 port=端口 dbname=数据库名 user=用户 password=密码)
|
# 数据库连接配置 - 使用单独的环境变量
|
||||||
DATABASES: flower=host=postgres port=5432 dbname=flower user=postgres password=postgres
|
DATABASES_HOST: postgres
|
||||||
|
DATABASES_PORT: "5432"
|
||||||
|
DATABASES_USER: postgres
|
||||||
|
DATABASES_PASSWORD: postgres
|
||||||
|
DATABASES_DBNAME: flower
|
||||||
# PgBouncer 基本配置
|
# PgBouncer 基本配置
|
||||||
PGBOUNCER_LISTEN_ADDR: 0.0.0.0
|
PGBOUNCER_LISTEN_ADDR: 0.0.0.0
|
||||||
PGBOUNCER_LISTEN_PORT: 6432
|
PGBOUNCER_LISTEN_PORT: 6432
|
||||||
|
|||||||
Reference in New Issue
Block a user