This change addresses critical issues in app metadata schema, ensures deterministic process-apps.py outputs, and corrects Docker Compose config errors for select apps. - Ensures all apps' data.yml root and formFields schema required fields are present - Fixes illegal Docker Compose fields (e.g. restart: no → "no", removes obsolete version fields) - Removes illegal " = " in environment variable declarations - Adds missing ports to env templates (e.g. zerotier) - Resolves all validation, duplicate, tag, and basic resource consistency errors - process-apps.py output is now idempotent and repeatable Apps deploy and test through compose config without validation errors.
25 lines
397 B
Bash
25 lines
397 B
Bash
# 数据持久化路径 [必填]
|
|
ZEROTIER_PLANET_ROOT_PATH=/home/zerotier-planet
|
|
|
|
# 网络模式 [必填]
|
|
NETWORK_MODE=host
|
|
|
|
# Zerotier 端口 [必填]
|
|
PANEL_APP_PORT_ZT=9993
|
|
|
|
# WebUI 端口 [必填]
|
|
PANEL_APP_PORT_HTTP=3443
|
|
|
|
# API 端口 [必填]
|
|
PANEL_APP_PORT_API=9994
|
|
|
|
# 文件传输端口 [必填]
|
|
PANEL_APP_PORT_FILE=3000
|
|
|
|
# 公网 IPV4/IPV6
|
|
IP_ADDR4=
|
|
|
|
# 公网 IPV4/IPV6
|
|
IP_ADDR6=
|
|
|