Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2025-05-23 03:42:08 +00:00
parent b6a27bfb38
commit 157627c6a4
63 changed files with 161 additions and 10 deletions

View File

@@ -11,7 +11,7 @@ services:
- TZ=Asia/Shanghai
- NGINX_PORT=${PANEL_APP_PORT_HTTP:-8080}
- AMMDS_SERVER_PORT=${PANEL_APP_PORT_API:-9523}
image: qyg2297248353/ammds:v1.6.2
image: qyg2297248353/ammds:v1.6.3
labels:
createdBy: Apps
network_mode: ${NETWORK_MODE:-host}

View File

@@ -11,7 +11,7 @@ services:
- PORT=7789
- CONFIG=/config
- TZ=Asia/Shanghai
image: wushuo894/ani-rss:v1.2.67
image: wushuo894/ani-rss:v1.2.70
labels:
createdBy: Apps
networks:

View File

@@ -0,0 +1,9 @@
# 数据持久化路径 [必填]
KIBANA_ROOT_PATH=/home/kibana
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=5601
# Elasticsearch 地址 [必填]
elasticsearch_hosts=https://127.0.0.1:9200

View File

@@ -0,0 +1,24 @@
additionalProperties:
formFields:
- default: "/home/kibana"
edit: true
envKey: KIBANA_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 5601
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
- default: "https://127.0.0.1:9200"
edit: true
envKey: elasticsearch_hosts
labelZh: Elasticsearch 地址
labelEn: Elasticsearch address
required: true
type: text

View File

@@ -0,0 +1,26 @@
networks:
1panel-network:
external: true
services:
kibana:
container_name: elastic-kibana
env_file:
- ./envs/global.env
- .env
environment:
- SERVER_NAME="kibana"
- SERVER_HOST="0.0.0.0"
- SERVER_PORT=5601
- I18N_LOCALE="zh-CN"
- SERVER_SHUTDOWNTIMEOUT="5s"
- MONITORING_UI_CONTAINER_ELASTICSEARCH_ENABLED=true
image: kibana:8.18.1
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:5601
restart: always
volumes:
- ${KIBANA_ROOT_PATH}/data:/usr/share/kibana/data

View File

@@ -0,0 +1,22 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
mkdir -p $KIBANA_ROOT_PATH
mkdir -p "$KIBANA_ROOT_PATH/data"
chown -R 1000:1000 $KIBANA_ROOT_PATH
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View File

@@ -14,7 +14,7 @@ services:
- database__client=mysql
- mail__options__service=Email
- mail__options__secure=true
image: ghost:5.120.0
image: ghost:5.120.1
labels:
createdBy: Apps
networks:

View File

@@ -12,7 +12,7 @@ services:
- NACOS_CONSOLE_PORT=${PANEL_APP_PORT_HTTP:-8080}
- NACOS_SERVER_PORT=${PANEL_APP_PORT_API:-8848}
- NACOS_AUTH_ENABLE=true
image: nacos/nacos-server:v3.0.0
image: nacos/nacos-server:v3.0.1
labels:
createdBy: Apps
network_mode: ${NETWORK_MODE}

View File

@@ -13,7 +13,7 @@ services:
- NACOS_SERVER_PORT=${PANEL_APP_PORT_API:-8848}
- NACOS_AUTH_ENABLE=true
- SPRING_DATASOURCE_PLATFORM=mysql
image: nacos/nacos-server:v3.0.0
image: nacos/nacos-server:v3.0.1
labels:
createdBy: Apps
network_mode: ${NETWORK_MODE}

View File

@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View File

@@ -11,7 +11,7 @@ services:
- TZ=Asia/Shanghai
- NGINX_PORT=${PANEL_APP_PORT_HTTP:-8080}
- AMMDS_SERVER_PORT=${PANEL_APP_PORT_API:-9523}
image: qyg2297248353/ammds:v1.6.2
image: qyg2297248353/ammds:v1.6.3
labels:
createdBy: Apps
network_mode: ${NETWORK_MODE:-host}

View File

@@ -11,7 +11,7 @@ services:
- PORT=7789
- CONFIG=/config
- TZ=Asia/Shanghai
image: wushuo894/ani-rss:v1.2.67
image: wushuo894/ani-rss:v1.2.70
labels:
createdBy: Apps
networks:

View File

@@ -0,0 +1,9 @@
# 数据持久化路径 [必填]
KIBANA_ROOT_PATH=/home/kibana
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=5601
# Elasticsearch 地址 [必填]
elasticsearch_hosts=https://127.0.0.1:9200

View File

@@ -0,0 +1,26 @@
networks:
1panel-network:
external: true
services:
kibana:
container_name: elastic-kibana
env_file:
- ./envs/global.env
- .env
environment:
- SERVER_NAME="kibana"
- SERVER_HOST="0.0.0.0"
- SERVER_PORT=5601
- I18N_LOCALE="zh-CN"
- SERVER_SHUTDOWNTIMEOUT="5s"
- MONITORING_UI_CONTAINER_ELASTICSEARCH_ENABLED=true
image: kibana:8.18.1
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:5601
restart: always
volumes:
- ${KIBANA_ROOT_PATH}/data:/usr/share/kibana/data

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

View File

@@ -14,7 +14,7 @@ services:
- database__client=mysql
- mail__options__service=Email
- mail__options__secure=true
image: ghost:5.120.0
image: ghost:5.120.1
labels:
createdBy: Apps
networks:

View File

@@ -12,7 +12,7 @@ services:
- NACOS_CONSOLE_PORT=${PANEL_APP_PORT_HTTP:-8080}
- NACOS_SERVER_PORT=${PANEL_APP_PORT_API:-8848}
- NACOS_AUTH_ENABLE=true
image: nacos/nacos-server:v3.0.0
image: nacos/nacos-server:v3.0.1
labels:
createdBy: Apps
network_mode: ${NETWORK_MODE}

View File

@@ -13,7 +13,7 @@ services:
- NACOS_SERVER_PORT=${PANEL_APP_PORT_API:-8848}
- NACOS_AUTH_ENABLE=true
- SPRING_DATASOURCE_PLATFORM=mysql
image: nacos/nacos-server:v3.0.0
image: nacos/nacos-server:v3.0.1
labels:
createdBy: Apps
network_mode: ${NETWORK_MODE}

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai