34 lines
742 B
Plaintext
34 lines
742 B
Plaintext
# ================================================
|
|
# PostgreSQL 配置
|
|
# 复制此文件为 .env 并修改配置
|
|
# ================================================
|
|
|
|
# ------------------------------
|
|
# PostgreSQL 版本
|
|
# ------------------------------
|
|
POSTGRES_VERSION=16
|
|
|
|
# ------------------------------
|
|
# 端口配置
|
|
# ------------------------------
|
|
POSTGRES_PORT=5432
|
|
|
|
# ------------------------------
|
|
# 数据库配置
|
|
# ------------------------------
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres123456
|
|
POSTGRES_DB=urban_lifeline
|
|
|
|
# ------------------------------
|
|
# 挂载目录配置
|
|
# ------------------------------
|
|
# 数据目录
|
|
DATA_ROOT=./volumes
|
|
|
|
# 日志目录
|
|
LOG_ROOT=./volumes
|
|
|
|
# 配置文件目录
|
|
CONFIG_ROOT=./volumes
|