mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2026-06-16 01:02:14 +08:00
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
475 B
Bash
25 lines
475 B
Bash
# 数据持久化路径 [必填]
|
|
ELASTICSEARCH_ROOT_PATH=/home/elasticsearch
|
|
|
|
# WebUI 端口 [必填]
|
|
PANEL_APP_PORT_HTTPS=9200
|
|
|
|
# 集群端口 [必填]
|
|
PANEL_APP_PORT_CLUSTER=9300
|
|
|
|
# Elasticsearch 密码 (elastic) [必填]
|
|
ELASTIC_PASSWORD=
|
|
|
|
# Kibana 密码 (kibana_system)
|
|
KIBANA_PASSWORD=
|
|
|
|
# 集群名称 [必填]
|
|
ES_SETTING_CLUSTER_NAME=elasticsearch
|
|
|
|
# 节点名称 [必填]
|
|
ES_SETTING_NODE_NAME=es-node
|
|
|
|
# Java 启动参数 (可选)
|
|
ES_JAVA_OPTS=-Xms1g -Xmx1g
|
|
|