mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-13 21:02:18 +08:00
feat:添加radarr到列表
This commit is contained in:
parent
f2f0a6a3ae
commit
80b991f0b6
8
apps/radarr/5.14.0/.env.sample
Normal file
8
apps/radarr/5.14.0/.env.sample
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
CONTAINER_NAME="radarr"
|
||||||
|
DOWNLOADS_PATH="./data/downloads"
|
||||||
|
MOVIES_PATH="./data/movies"
|
||||||
|
PANEL_APP_PORT_HTTP=40316
|
||||||
|
PGID=1000
|
||||||
|
PUID=1000
|
||||||
|
RADARR_CONFIG_PATH="./data/data"
|
||||||
|
TIME_ZONE="Asia/Shanghai"
|
52
apps/radarr/5.14.0/data.yml
Normal file
52
apps/radarr/5.14.0/data.yml
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "40316"
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelEn: Port
|
||||||
|
labelZh: 端口
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: "1000"
|
||||||
|
edit: true
|
||||||
|
envKey: PUID
|
||||||
|
labelEn: User ID
|
||||||
|
labelZh: 用户 ID
|
||||||
|
required: true
|
||||||
|
type: number
|
||||||
|
- default: "1000"
|
||||||
|
edit: true
|
||||||
|
envKey: PGID
|
||||||
|
labelEn: Group ID
|
||||||
|
labelZh: 组 ID
|
||||||
|
required: true
|
||||||
|
type: number
|
||||||
|
- default: "Asia/Shanghai"
|
||||||
|
edit: true
|
||||||
|
envKey: TIME_ZONE
|
||||||
|
labelEn: Time Zone
|
||||||
|
labelZh: 时区
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: "./data/data"
|
||||||
|
edit: true
|
||||||
|
envKey: RADARR_CONFIG_PATH
|
||||||
|
labelEn: Radarr Config Path
|
||||||
|
labelZh: Radarr 配置路径
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: "./data/movies"
|
||||||
|
edit: true
|
||||||
|
envKey: MOVIES_PATH
|
||||||
|
labelEn: Movies Path
|
||||||
|
labelZh: 电影路径
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: "./data/downloads"
|
||||||
|
edit: true
|
||||||
|
envKey: DOWNLOADS_PATH
|
||||||
|
labelEn: Downloads Path
|
||||||
|
labelZh: 下载路径
|
||||||
|
required: true
|
||||||
|
type: text
|
23
apps/radarr/5.14.0/docker-compose.yml
Normal file
23
apps/radarr/5.14.0/docker-compose.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
services:
|
||||||
|
radarr:
|
||||||
|
image: "linuxserver/radarr:5.14.0"
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
environment:
|
||||||
|
- PUID=${PUID}
|
||||||
|
- PGID=${PGID}
|
||||||
|
- TZ=${TIME_ZONE}
|
||||||
|
volumes:
|
||||||
|
- ${RADARR_CONFIG_PATH}:/config
|
||||||
|
- ${MOVIES_PATH}:/movies
|
||||||
|
- ${DOWNLOADS_PATH}:/downloads
|
||||||
|
ports:
|
||||||
|
- "${PANEL_APP_PORT_HTTP}:7878"
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
5
apps/radarr/README.md
Normal file
5
apps/radarr/README.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# Radarr
|
||||||
|
|
||||||
|
**Radarr** 是一款针对 Usenet 和 BitTorrent 用户的电影收藏管理器。它可以监控多个 RSS 源,获取新电影,并与客户端和索引器进行交互,自动下载、分类和重命名电影文件。Radarr 还可以配置为在库中的现有文件有更高质量格式时自动升级其质量。
|
||||||
|
|
||||||
|
请注意,每部电影只能支持一种格式。如果你想要同一部电影的 4k 版本和 1080p 版本,你需要设置多个实例。
|
19
apps/radarr/data.yml
Normal file
19
apps/radarr/data.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
name: Radarr
|
||||||
|
tags:
|
||||||
|
- 多媒体
|
||||||
|
title: 电影收藏管理器
|
||||||
|
description: 电影收藏管理器
|
||||||
|
additionalProperties:
|
||||||
|
key: radarr
|
||||||
|
name: Radarr
|
||||||
|
tags:
|
||||||
|
- Media
|
||||||
|
shortDescZh: 电影收藏管理器
|
||||||
|
shortDescEn: Movie organizer/manager
|
||||||
|
type: tool
|
||||||
|
crossVersionUpdate: true
|
||||||
|
limit: 0
|
||||||
|
recommend: 0
|
||||||
|
website: https://radarr.video
|
||||||
|
github: https://github.com/Radarr/Radarr
|
||||||
|
document: https://radarr.video/docs/
|
8
apps/radarr/latest/.env.sample
Normal file
8
apps/radarr/latest/.env.sample
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
CONTAINER_NAME="radarr"
|
||||||
|
DOWNLOADS_PATH="./data/downloads"
|
||||||
|
MOVIES_PATH="./data/movies"
|
||||||
|
PANEL_APP_PORT_HTTP=40316
|
||||||
|
PGID=1000
|
||||||
|
PUID=1000
|
||||||
|
RADARR_CONFIG_PATH="./data/data"
|
||||||
|
TIME_ZONE="Asia/Shanghai"
|
52
apps/radarr/latest/data.yml
Normal file
52
apps/radarr/latest/data.yml
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "40316"
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelEn: Port
|
||||||
|
labelZh: 端口
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: "1000"
|
||||||
|
edit: true
|
||||||
|
envKey: PUID
|
||||||
|
labelEn: User ID
|
||||||
|
labelZh: 用户 ID
|
||||||
|
required: true
|
||||||
|
type: number
|
||||||
|
- default: "1000"
|
||||||
|
edit: true
|
||||||
|
envKey: PGID
|
||||||
|
labelEn: Group ID
|
||||||
|
labelZh: 组 ID
|
||||||
|
required: true
|
||||||
|
type: number
|
||||||
|
- default: "Asia/Shanghai"
|
||||||
|
edit: true
|
||||||
|
envKey: TIME_ZONE
|
||||||
|
labelEn: Time Zone
|
||||||
|
labelZh: 时区
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: "./data/data"
|
||||||
|
edit: true
|
||||||
|
envKey: RADARR_CONFIG_PATH
|
||||||
|
labelEn: Radarr Config Path
|
||||||
|
labelZh: Radarr 配置路径
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: "./data/movies"
|
||||||
|
edit: true
|
||||||
|
envKey: MOVIES_PATH
|
||||||
|
labelEn: Movies Path
|
||||||
|
labelZh: 电影路径
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: "./data/downloads"
|
||||||
|
edit: true
|
||||||
|
envKey: DOWNLOADS_PATH
|
||||||
|
labelEn: Downloads Path
|
||||||
|
labelZh: 下载路径
|
||||||
|
required: true
|
||||||
|
type: text
|
23
apps/radarr/latest/docker-compose.yml
Normal file
23
apps/radarr/latest/docker-compose.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
services:
|
||||||
|
radarr:
|
||||||
|
image: "linuxserver/radarr:latest"
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
environment:
|
||||||
|
- PUID=${PUID}
|
||||||
|
- PGID=${PGID}
|
||||||
|
- TZ=${TIME_ZONE}
|
||||||
|
volumes:
|
||||||
|
- ${RADARR_CONFIG_PATH}:/config
|
||||||
|
- ${MOVIES_PATH}:/movies
|
||||||
|
- ${DOWNLOADS_PATH}:/downloads
|
||||||
|
ports:
|
||||||
|
- "${PANEL_APP_PORT_HTTP}:7878"
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
BIN
apps/radarr/logo.png
Normal file
BIN
apps/radarr/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
Loading…
Reference in New Issue
Block a user