Add App ANI-RSS

This commit is contained in:
arch3rPro
2025-07-02 14:48:08 +08:00
parent dd99e55644
commit 23ae6b0f62
6 changed files with 311 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
additionalProperties:
formFields:
- default: 7789
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 管理端口
required: true
rule: paramPort
type: number
- default: ./ani-rss-config
edit: true
envKey: ANI_RSS_CONF_PATH
labelEn: Config Path
labelZh: 配置目录
required: true
type: string
- default: ./downloads
edit: true
envKey: ANI_RSS_DOWNLOAD_PATH
labelEn: Download Path
labelZh: 下载目录
required: true
type: string
- default: ./media
edit: true
envKey: ANI_RSS_MEDIA_PATH
labelEn: Media Path
labelZh: 媒体目录
required: true
type: string
+29
View File
@@ -0,0 +1,29 @@
services:
ani-rss:
image: wushuo894/ani-rss:latest
container_name: ani-rss
restart: always
environment:
- PORT=7789
- CONFIG=/config
- TZ=Asia/Shanghai
ports:
- "${PANEL_APP_PORT_HTTP}:7789"
volumes:
- ./ani-rss-config:/config
- ./media:/Media
qbittorrent:
image: linuxserver/qbittorrent:latest
container_name: qbittorrent
restart: always
environment:
- WEBUI_PORT=8080
- TZ=Asia/Shanghai
- PUID=0
- PGID=0
ports:
- "8080:8080"
volumes:
- ./qbittorrent-config:/config
- ./downloads:/downloads
- ./media:/Media