forked from DevOps/deploy.stack
23 lines
775 B
Plaintext
23 lines
775 B
Plaintext
# ============================================================
|
||
# couchdb 部署 — 公共环境变量模板(不含敏感信息)
|
||
# 复制为 env.cfg 后填入真实值,env.cfg 已被 .gitignore 忽略
|
||
# ============================================================
|
||
#
|
||
# 使用方式:
|
||
# cp env.cfg.example env.cfg
|
||
# $EDITOR env.cfg # 填入真实密码/密钥后保存
|
||
# docker compose -p couchdb --env-file ./env.cfg -f ./stack.yml up -d
|
||
#
|
||
# ============================================================
|
||
# ⚠️ 敏感值(必填,env.cfg 不提交)
|
||
# ============================================================
|
||
IMAGE_TAG=couchdb:3.5
|
||
|
||
COUCHDB_PORT=5984
|
||
|
||
COUCHDB_USER=your_custom_user
|
||
|
||
COUCHDB_PASSWORD=<your-db-password>
|
||
|
||
Volumes_Path=/data/volumes/couchdb
|