Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2026-03-16 10:07:39 +00:00
parent a51cefa4d5
commit 7044b5a7fa
39 changed files with 359 additions and 64 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ services:
environment:
- TZ=Asia/Shanghai
- CLOUDDRIVE_HOME=/Config
image: cloudnas/clouddrive2:0.9.24
image: cloudnas/clouddrive2:1.0.0
labels:
createdBy: Apps
networks:
+1 -1
View File
@@ -14,7 +14,7 @@ services:
- .env
environment:
- TZ=Asia/Shanghai
image: dujiaonext/admin:v0.1.0
image: dujiaonext/admin:v0.1.1
networks:
- dujiao-net
ports:
+1 -1
View File
@@ -11,7 +11,7 @@ services:
- TZ=Asia/Shanghai
- DB_PATH=/emby-data/playback_reporting.db
- playback_data_mode=sqlite
image: zeyu8023/emby-stats:1.2.0.725
image: zeyu8023/emby-stats:1.2.0.732
labels:
createdBy: Apps
networks:
+5 -11
View File
@@ -2,7 +2,10 @@
RUSTFS_ROOT_PATH=/home/rustfs
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=9000
PANEL_APP_PORT_HTTP=9001
# API 端口 [必填]
PANEL_APP_PORT_API=9000
# 管理员账号 [必填]
RUSTFS_ACCESS_KEY=rustfsadmin
@@ -11,17 +14,8 @@ RUSTFS_ACCESS_KEY=rustfsadmin
RUSTFS_SECRET_KEY=rustfsadmin
# 域名
RUSTFS_SERVER_DOMAINS=127.0.0.1:9000
RUSTFS_SERVER_DOMAINS=example.com
# 启用控制台 [必填]
RUSTFS_CONSOLE_ENABLE=true
# 自定义挂载目录 1
CUSTOM_MOUNT_DIRECTORY_1=
# 自定义挂载目录 2
CUSTOM_MOUNT_DIRECTORY_2=
# 自定义挂载目录 3
CUSTOM_MOUNT_DIRECTORY_3=
+30 -7
View File
@@ -9,17 +9,40 @@ services:
- .env
environment:
- TZ=Asia/Shanghai
- RUSTFS_ADDRESS=:9000
image: rustfs/rustfs:latest
- RUSTFS_VOLUMES=/data/rustfs{0...3}
- RUSTFS_ADDRESS=0.0.0.0:9000
- RUSTFS_CONSOLE_ADDRESS=0.0.0.0:9001
- RUSTFS_CONSOLE_ENABLE=true
- RUSTFS_CORS_ALLOWED_ORIGINS=*
- RUSTFS_CONSOLE_CORS_ALLOWED_ORIGINS=*
- RUSTFS_OBS_LOGGER_LEVEL=info
- RUSTFS_TLS_PATH=/opt/tls
- RUSTFS_OBJECT_CACHE_ENABLE=true
- RUSTFS_OBJECT_CACHE_TTL_SECS=300
healthcheck:
interval: 30s
retries: 3
start_period: 40s
test:
- CMD
- sh
- -c
- curl -f http://127.0.0.1:9000/health && curl -f http://127.0.0.1:9001/rustfs/console/health
timeout: 10s
image: rustfs/rustfs:1.0.0-alpha.86
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:9000
- ${PANEL_APP_PORT_API}:9000
- ${PANEL_APP_PORT_HTTP}:9001
restart: always
security_opt:
- no-new-privileges:true
volumes:
- ${RUSTFS_ROOT_PATH}/data:/etc/rustfs
- ${CUSTOM_MOUNT_DIRECTORY_1:-./default_mount_1}:${CUSTOM_MOUNT_DIRECTORY_1:-/default_mount_1}
- ${CUSTOM_MOUNT_DIRECTORY_2:-./default_mount_2}:${CUSTOM_MOUNT_DIRECTORY_2:-/default_mount_2}
- ${CUSTOM_MOUNT_DIRECTORY_3:-./default_mount_3}:${CUSTOM_MOUNT_DIRECTORY_3:-/default_mount_3}
- ${RUSTFS_ROOT_PATH}/logs:/app/logs
- ${RUSTFS_ROOT_PATH}/data/rustfs0:/data/rustfs0
- ${RUSTFS_ROOT_PATH}/data/rustfs1:/data/rustfs1
- ${RUSTFS_ROOT_PATH}/data/rustfs2:/data/rustfs2
- ${RUSTFS_ROOT_PATH}/data/rustfs3:/data/rustfs3
+21
View File
@@ -0,0 +1,21 @@
# 数据持久化路径 [必填]
RUSTFS_ROOT_PATH=/home/rustfs
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=9001
# API 端口 [必填]
PANEL_APP_PORT_API=9000
# 管理员账号 [必填]
RUSTFS_ACCESS_KEY=rustfsadmin
# 管理员密码 [必填]
RUSTFS_SECRET_KEY=rustfsadmin
# 域名
RUSTFS_SERVER_DOMAINS=example.com
# 启用控制台 [必填]
RUSTFS_CONSOLE_ENABLE=true
+48
View File
@@ -0,0 +1,48 @@
networks:
1panel-network:
external: true
services:
rustfs:
container_name: rustfs
env_file:
- ./envs/global.env
- .env
environment:
- TZ=Asia/Shanghai
- RUSTFS_VOLUMES=/data/rustfs{0...3}
- RUSTFS_ADDRESS=0.0.0.0:9000
- RUSTFS_CONSOLE_ADDRESS=0.0.0.0:9001
- RUSTFS_CONSOLE_ENABLE=true
- RUSTFS_CORS_ALLOWED_ORIGINS=*
- RUSTFS_CONSOLE_CORS_ALLOWED_ORIGINS=*
- RUSTFS_OBS_LOGGER_LEVEL=info
- RUSTFS_TLS_PATH=/opt/tls
- RUSTFS_OBJECT_CACHE_ENABLE=true
- RUSTFS_OBJECT_CACHE_TTL_SECS=300
healthcheck:
interval: 30s
retries: 3
start_period: 40s
test:
- CMD
- sh
- -c
- curl -f http://127.0.0.1:9000/health && curl -f http://127.0.0.1:9001/rustfs/console/health
timeout: 10s
image: rustfs/rustfs:latest
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_API}:9000
- ${PANEL_APP_PORT_HTTP}:9001
restart: always
security_opt:
- no-new-privileges:true
volumes:
- ${RUSTFS_ROOT_PATH}/logs:/app/logs
- ${RUSTFS_ROOT_PATH}/data/rustfs0:/data/rustfs0
- ${RUSTFS_ROOT_PATH}/data/rustfs1:/data/rustfs1
- ${RUSTFS_ROOT_PATH}/data/rustfs2:/data/rustfs2
- ${RUSTFS_ROOT_PATH}/data/rustfs3:/data/rustfs3
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai