添加 siyuan certd vaultwarden

This commit is contained in:
2026-04-07 16:03:47 +08:00
parent 3b01ca8ed3
commit 41a586b97b
25 changed files with 2894 additions and 27 deletions

29
certd/docker-compose.yml Normal file
View File

@@ -0,0 +1,29 @@
services:
certd:
image: ${CERTD_IMAGE:-registry.cn-shenzhen.aliyuncs.com/handsfree/certd:latest}
container_name: certd
restart: unless-stopped
environment:
- TZ=Asia/Shanghai
- certd_system_resetAdminPasswd=${RESET_ADMIN_PASSWD:-false}
- certd_koa_hostname=0.0.0.0
volumes:
# ⚠ 冒号后面的 /app/data 切记不要修改,只改冒号前面的宿主机路径
- ${CERTD_DATA_DIR:-/data/certd}:/app/data
- /etc/localtime:/etc/localtime:ro
ports:
- "127.0.0.1:7001:7001"
dns:
- 223.5.5.5
- 8.8.8.8
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:7001"]
interval: 30s
timeout: 5s
retries: 3
start_period: 15s
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"