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.
22 lines
409 B
Bash
22 lines
409 B
Bash
# 数据持久化路径 [必填]
|
|
AUTO_LADY_ROOT_PATH=/home/auto-lady
|
|
|
|
# WebUI 端口 [必填]
|
|
PANEL_APP_PORT_HTTP=8080
|
|
|
|
# 自定义挂载目录 1
|
|
CUSTOM_MOUNT_DIRECTORY_1=
|
|
|
|
# 自定义挂载目录 2
|
|
CUSTOM_MOUNT_DIRECTORY_2=
|
|
|
|
# 自定义挂载目录 3
|
|
CUSTOM_MOUNT_DIRECTORY_3=
|
|
|
|
# 网络代理地址
|
|
HTTP_PROXY=
|
|
|
|
# 跳过代理地址
|
|
NO_PROXY=localhost,127.0.0.1,::1,192.168.0.0/16,10.0.0.0/8,*.local
|
|
|