Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2026-04-06 19:05:35 +00:00
parent 4916d494fc
commit 56b28684bd
15 changed files with 208 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# 数据持久化路径 [必填]
SUWAYOMI_SERVER_ROOT_PATH=/home/suwayomi-server
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=4567
# 认证模式 [必填]
AUTH_MODE=none
# 管理员用户名
AUTH_USERNAME=
# 管理员密码
AUTH_PASSWORD=
+21
View File
@@ -0,0 +1,21 @@
networks:
1panel-network:
external: true
services:
suwayomi-server:
container_name: suwayomi-server
env_file:
- ./envs/global.env
- .env
environment:
- TZ=Asia/Shanghai
image: ghcr.io/suwayomi/suwayomi-server:v2.1.2087
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:4567
restart: always
volumes:
- ${SUWAYOMI_SERVER_ROOT_PATH}/data:/home/suwayomi/.local/share/Tachidesk
+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