提交 72907e30 authored 作者: QYG2297248353's avatar QYG2297248353

Synced apps from source repository via GitHub Actions

上级 d99d262d
...@@ -7,21 +7,24 @@ PANEL_APP_PORT_HTTP=8080 ...@@ -7,21 +7,24 @@ PANEL_APP_PORT_HTTP=8080
# WebUI SSL 端口 [必填] # WebUI SSL 端口 [必填]
PANEL_APP_PORT_HTTPS=8443 PANEL_APP_PORT_HTTPS=8443
# 数据库端口 [必填]
EXPOSE_DB_PORT=5432
# 插件调试端口 [必填] # 插件调试端口 [必填]
PLUGIN_DEBUGGING_PORT=5003 EXPOSE_PLUGIN_DEBUGGING_PORT=5003
# Milvus 端口 [必填] # Milvus 接口端口 [必填]
MILVUS_STANDALONE_PORT1=19530 MILVUS_STANDALONE_API_PORT=19530
# Milvus 端口 [必填] # Milvus 服务端口 [必填]
MILVUS_STANDALONE_PORT2=9091 MILVUS_STANDALONE_SERVER_PORT=9091
# MyScale 端口 [必填] # MyScale 端口 [必填]
MYSCALE_PORT=8123 MYSCALE_PORT=8123
# Elasticsearch 端口 [必填] # Elasticsearch 端口 [必填]
ELASTICSEARCH_PORT=9200 ELASTICSEARCH_PORT=8123
# Kibana 端口 [必填] # Kibana 端口 [必填]
KIBANA_PORT=5601 KIBANA_PORT=8123
...@@ -23,9 +23,17 @@ additionalProperties: ...@@ -23,9 +23,17 @@ additionalProperties:
required: true required: true
rule: paramPort rule: paramPort
type: number type: number
- default: 5432
edit: true
envKey: EXPOSE_DB_PORT
labelZh: 数据库端口
labelEn: Database port
required: true
rule: paramPort
type: number
- default: 5003 - default: 5003
edit: true edit: true
envKey: PLUGIN_DEBUGGING_PORT envKey: EXPOSE_PLUGIN_DEBUGGING_PORT
labelZh: 插件调试端口 labelZh: 插件调试端口
labelEn: Plugin debugging port labelEn: Plugin debugging port
required: true required: true
...@@ -33,17 +41,18 @@ additionalProperties: ...@@ -33,17 +41,18 @@ additionalProperties:
type: number type: number
- default: 19530 - default: 19530
disabled: true disabled: true
envKey: MILVUS_STANDALONE_PORT1 edit: true
labelZh: Milvus 端口 envKey: MILVUS_STANDALONE_API_PORT
labelEn: Milvus port labelZh: Milvus 接口端口
labelEn: Milvus API port
required: true required: true
rule: paramPort rule: paramPort
type: number type: number
- default: 9091 - default: 9091
disabled: true disabled: true
envKey: MILVUS_STANDALONE_PORT2 envKey: MILVUS_STANDALONE_SERVER_PORT
labelZh: Milvus 端口 labelZh: Milvus 服务端口
labelEn: Milvus port labelEn: Milvus server port
required: true required: true
rule: paramPort rule: paramPort
type: number type: number
...@@ -55,7 +64,7 @@ additionalProperties: ...@@ -55,7 +64,7 @@ additionalProperties:
required: true required: true
rule: paramPort rule: paramPort
type: number type: number
- default: 9200 - default: 8123
edit: true edit: true
envKey: ELASTICSEARCH_PORT envKey: ELASTICSEARCH_PORT
labelZh: Elasticsearch 端口 labelZh: Elasticsearch 端口
...@@ -63,7 +72,7 @@ additionalProperties: ...@@ -63,7 +72,7 @@ additionalProperties:
required: true required: true
rule: paramPort rule: paramPort
type: number type: number
- default: 5601 - default: 8123
edit: true edit: true
envKey: KIBANA_PORT envKey: KIBANA_PORT
labelZh: Kibana 端口 labelZh: Kibana 端口
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -16,6 +16,19 @@ if [ -f .env ]; then ...@@ -16,6 +16,19 @@ if [ -f .env ]; then
cp -r conf/. "$DIFY_ROOT_PATH/" cp -r conf/. "$DIFY_ROOT_PATH/"
# setup-3 sync environment variables
env_source="envs/dify.env"
if [ -f "$env_source" ]; then
while IFS='=' read -r key value; do
if [[ -z "$key" || "$key" =~ ^# ]]; then
continue
fi
if ! grep -q "^$key=" .env; then
echo "$key=$value" >> .env
fi
done < "$env_source"
fi
echo "Check Finish." echo "Check Finish."
else else
......
...@@ -27,6 +27,19 @@ if [ -f .env ]; then ...@@ -27,6 +27,19 @@ if [ -f .env ]; then
echo "Warning: conf directory not found." echo "Warning: conf directory not found."
fi fi
# setup-3 sync environment variables
env_source="envs/dify.env"
if [ -f "$env_source" ]; then
while IFS='=' read -r key value; do
if [[ -z "$key" || "$key" =~ ^# ]]; then
continue
fi
if ! grep -q "^$key=" .env; then
echo "$key=$value" >> .env
fi
done < "$env_source"
fi
echo "Check Finish." echo "Check Finish."
else else
......
...@@ -14,7 +14,7 @@ services: ...@@ -14,7 +14,7 @@ services:
- .env - .env
environment: environment:
- VERSION=${VERSION} - VERSION=${VERSION}
image: dockurr/macos:1.21 image: dockurr/macos:1.22
labels: labels:
createdBy: Apps createdBy: Apps
networks: networks:
......
...@@ -57,7 +57,7 @@ services: ...@@ -57,7 +57,7 @@ services:
- -f - -f
- http://localhost:1200/healthz?key=${ACCESS_KEY} - http://localhost:1200/healthz?key=${ACCESS_KEY}
timeout: 10s timeout: 10s
image: diygod/rsshub:2025-02-15 image: diygod/rsshub:2025-02-17
labels: labels:
createdBy: Apps createdBy: Apps
networks: networks:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论