Synced apps from source repository via GitHub Actions

This commit is contained in:
QYG2297248353
2025-08-14 03:52:28 +00:00
parent 6a77b92277
commit ba9844c8c9
93 changed files with 75 additions and 52 deletions
@@ -14,7 +14,7 @@ services:
- PORT=7789 - PORT=7789
- CONFIG=/config - CONFIG=/config
- TZ=Asia/Shanghai - TZ=Asia/Shanghai
image: wushuo894/ani-rss:v2.1.9 image: wushuo894/ani-rss:v2.1.10
labels: labels:
createdBy: Apps createdBy: Apps
networks: networks:
@@ -11,7 +11,7 @@ services:
- HTTPS_PROXY=${HTTP_PROXY} - HTTPS_PROXY=${HTTP_PROXY}
- HTTP_PROXY=${HTTP_PROXY:-} - HTTP_PROXY=${HTTP_PROXY:-}
- NO_PROXY=${NO_PROXY:-} - NO_PROXY=${NO_PROXY:-}
image: envyafish/byte-muse:1.17.2 image: envyafish/byte-muse:1.17.4
labels: labels:
createdBy: Apps createdBy: Apps
networks: networks:
@@ -14,7 +14,7 @@ services:
- verificationCodeTimeout=10 - verificationCodeTimeout=10
- appname=casdoor - appname=casdoor
- authState=casdoor - authState=casdoor
image: casbin/casdoor:v2.16.0 image: casbin/casdoor:v2.20.0
labels: labels:
createdBy: Apps createdBy: Apps
networks: networks:
@@ -19,7 +19,7 @@ services:
' '
timeout: 3s timeout: 3s
image: jiangrui1994/cloudsaver:v0.6.0 image: jiangrui1994/cloudsaver:0.6.1
labels: labels:
createdBy: Apps createdBy: Apps
networks: networks:
@@ -13,7 +13,7 @@ services:
- HTTP_PROXY=${HTTP_PROXY:-} - HTTP_PROXY=${HTTP_PROXY:-}
- HTTPS_PROXY=${HTTP_PROXY:-} - HTTPS_PROXY=${HTTP_PROXY:-}
- NO_PROXY=localhost,127.0.0.1,::1 - NO_PROXY=localhost,127.0.0.1,::1
image: emby/embyserver:4.9.1.17 image: emby/embyserver:4.9.1.18
labels: labels:
createdBy: Apps createdBy: Apps
network_mode: ${NETWORK_MODE} network_mode: ${NETWORK_MODE}
@@ -14,7 +14,7 @@ services:
- database__client=mysql - database__client=mysql
- mail__options__service=Email - mail__options__service=Email
- mail__options__secure=true - mail__options__secure=true
image: ghost:6.0.2 image: ghost:6.0.3
labels: labels:
createdBy: Apps createdBy: Apps
networks: networks:
@@ -28,7 +28,7 @@ services:
- GITEA__webhook__PROXY_HOSTS=${PROXY_HOSTS} - GITEA__webhook__PROXY_HOSTS=${PROXY_HOSTS}
- GITEA__git.config__http.proxy=${PROXY_URL} - GITEA__git.config__http.proxy=${PROXY_URL}
- GITEA__git.config__https.proxy=${PROXY_URL} - GITEA__git.config__https.proxy=${PROXY_URL}
image: gitea/gitea:1.24.4 image: gitea/gitea:1.24.5
labels: labels:
createdBy: Apps createdBy: Apps
networks: networks:
@@ -11,7 +11,7 @@ services:
- PUID=0 - PUID=0
- PGID=0 - PGID=0
- TZ=Asia/Shanghai - TZ=Asia/Shanghai
image: luckypuppy514/jproxy:v3.4.7 image: luckypuppy514/jproxy:v3.4.8
labels: labels:
createdBy: Apps createdBy: Apps
networks: networks:
@@ -7,7 +7,7 @@ services:
env_file: env_file:
- ./envs/global.env - ./envs/global.env
- .env - .env
image: mdcng/mdc:1.19.7 image: mdcng/mdc:1.20.0
labels: labels:
createdBy: Apps createdBy: Apps
networks: networks:
@@ -1,9 +1,6 @@
# Redis 服务 (前置检查) # Redis 服务 (前置检查)
PANEL_REDIS_TYPE=redis PANEL_REDIS_TYPE=redis
# 数据持久化路径 [必填]
MOONTV_ROOT_PATH=/home/moontv
# WebUI 端口 [必填] # WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=3000 PANEL_APP_PORT_HTTP=3000
@@ -16,18 +13,27 @@ ANNOUNCEMENT=本网站仅提供影视信息搜索服务,所有内容均来自
# 搜索结果最大页数 [必填] # 搜索结果最大页数 [必填]
NEXT_PUBLIC_SEARCH_MAX_PAGE=5 NEXT_PUBLIC_SEARCH_MAX_PAGE=5
# 数据存储类型 [必填] # None [必填]
NEXT_PUBLIC_STORAGE_TYPE=localstorage
# Redis 地址 (Redis 存储)
REDIS_URL=redis://127.0.0.1:6379
# Redis 用户 (Redis 存储)
USERNAME= USERNAME=
# Redis 密码 (Redis 存储) # None [必填]
PASSWORD= PASSWORD=
# 是否允许注册 [必填] # 是否允许注册 [必填]
NEXT_PUBLIC_ENABLE_REGISTER=false NEXT_PUBLIC_ENABLE_REGISTER=false
# 关闭色情内容过滤 [必填]
NEXT_PUBLIC_DISABLE_YELLOW_FILTER=false
# 数据存储类型 [必填]
NEXT_PUBLIC_STORAGE_TYPE=redis
# Redis 地址 (Redis 存储)
REDIS_URL=redis://127.0.0.1:6379
# Upstash 地址 (Upstash 存储)
UPSTASH_URL=
# Upstash 授权码 (Upstash 存储)
UPSTASH_TOKEN=
@@ -14,13 +14,6 @@ additionalProperties:
values: values:
- label: Redis - label: Redis
value: redis value: redis
- default: "/home/moontv"
edit: true
envKey: MOONTV_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 3000 - default: 3000
edit: true edit: true
envKey: PANEL_APP_PORT_HTTP envKey: PANEL_APP_PORT_HTTP
@@ -50,7 +43,45 @@ additionalProperties:
labelEn: Search result maximum number of pages labelEn: Search result maximum number of pages
required: true required: true
type: number type: number
- default: "localstorage" - default: ""
edit: true
envKey: USERNAME
labelZh:
labelEn:
required: true
type: text
- default: ""
edit: true
envKey: PASSWORD
labelZh:
labelEn:
required: true
type: password
- default: "false"
edit: true
envKey: NEXT_PUBLIC_ENABLE_REGISTER
labelZh: 是否允许注册
labelEn: Enable Register
required: true
type: select
values:
- label: 允许注册
value: "true"
- label: 禁用注册
value: "false"
- default: "false"
edit: true
envKey: NEXT_PUBLIC_DISABLE_YELLOW_FILTER
labelZh: 关闭色情内容过滤
labelEn: Disable Yellow Filter
required: true
type: select
values:
- label: 开启过滤
value: "true"
- label: 禁用过滤
value: "false"
- default: "redis"
edit: true edit: true
envKey: NEXT_PUBLIC_STORAGE_TYPE envKey: NEXT_PUBLIC_STORAGE_TYPE
labelZh: 数据存储类型 labelZh: 数据存储类型
@@ -58,8 +89,8 @@ additionalProperties:
required: true required: true
type: select type: select
values: values:
- label: 本地浏览器存储 - label: Upstash
value: "localstorage" value: "upstash"
- label: Redis - label: Redis
value: "redis" value: "redis"
- default: "redis://127.0.0.1:6379" - default: "redis://127.0.0.1:6379"
@@ -71,27 +102,15 @@ additionalProperties:
type: text type: text
- default: "" - default: ""
edit: true edit: true
envKey: USERNAME envKey: UPSTASH_URL
labelZh: Redis 用户 (Redis 存储) labelZh: Upstash 地址 (Upstash 存储)
labelEn: Redis User (Redis Storage) labelEn: Upstash Address (Upstash Storage)
required: false required: false
type: text type: text
- default: "" - default: ""
edit: true edit: true
envKey: PASSWORD envKey: UPSTASH_TOKEN
labelZh: Redis 密码 (Redis 存储) labelZh: Upstash 授权码 (Upstash 存储)
labelEn: Redis Password (Redis Storage) labelEn: Upstash Token (Upstash Storage)
required: false required: false
type: password type: password
- default: "false"
edit: true
envKey: NEXT_PUBLIC_ENABLE_REGISTER
labelZh: 是否允许注册
labelEn: Enable Register
required: true
type: select
values:
- label: 允许注册 (Redis 存储)
value: "true"
- label: 禁用注册
value: "false"
@@ -9,7 +9,7 @@ services:
- .env - .env
environment: environment:
- TZ=Asia/Shanghai - TZ=Asia/Shanghai
image: ghcr.io/senshinya/moontv:latest image: ghcr.io/moontechlab/lunatv:2.1.0
labels: labels:
createdBy: Apps createdBy: Apps
networks: networks:
@@ -17,5 +17,3 @@ services:
ports: ports:
- ${PANEL_APP_PORT_HTTP}:3000 - ${PANEL_APP_PORT_HTTP}:3000
restart: always restart: always
volumes:
- ${MOONTV_ROOT_PATH}/data:/data
@@ -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-08-12 image: diygod/rsshub:2025-08-14
labels: labels:
createdBy: Apps createdBy: Apps
networks: networks: