feat(nginxpulse): add nginxpulse deployment files

This commit is contained in:
cnphpbb
2026-07-22 16:29:14 +08:00
parent 599b8e9d2f
commit bc96bc6977
3 changed files with 66 additions and 1 deletions
+31
View File
@@ -0,0 +1,31 @@
# ============================================================
# nginxpulse 部署 — 公共环境变量模板(不含敏感信息)
# 复制为 env.cfg 后填入真实值,env.cfg 已被 .gitignore 忽略
# ============================================================
#
# 使用方式:
# cp env.cfg.example env.cfg
# $EDITOR env.cfg # 填入真实密码/密钥后保存
# docker compose -p nginxpulse --env-file ./nginxpulse/env.cfg -f ./nginxpulse/stack.yml up -d
# mkdir -pv /data/volumes/{postgres,nginxpulse}
# mkdir -pv /data/volumes/nginxpulse/{logs,nginxpulse_data,configs}
#
# ============================================================
# ⚠️ 敏感值(必填,env.cfg 不提交)
# ============================================================
# --- PostgreSQL ---
PG_IMAGE_TAG_VER=18.4
PG_IMAGE_TAG_V18=postgres:${PG_IMAGE_TAG_VER}
POSTGRES_PASSWORD=<your-password>
POSTGRES_HOST_AUTH_METHOD=scram-sha-256
# --- Nginxpulse ---
NP_IMAGE_TAG_VER=v1.6.24
NP_IMAGE_TAG=magiccoders/nginxpulse:${NP_IMAGE_TAG_VER}
# --- 卷路径 ---
Volumes_Path=/data/volumes
PG_Volumes_Path=${Volumes_Path}/postgres
NP_Volumes_Path=${Volumes_Path}/nginxpulse