1
0

chore(deps): update linuxserver/sonarr docker tag to v4.0.16 (#2367)

This commit is contained in:
renovate[bot]
2025-11-05 07:31:01 +00:00
committed by GitHub
parent 861f00bd93
commit 8538de0453
3 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
CONTAINER_NAME="sonarr"
DOWNLOADS_PATH="./data/downloads"
PANEL_APP_PORT_HTTP=40317
PGID=1000
PUID=1000
SONARR_CONFIG_PATH="./data/config"
TIME_ZONE="Asia/Shanghai"
TV_SERIES_PATH="./data/tv"

View File

@@ -0,0 +1,52 @@
additionalProperties:
formFields:
- default: "40317"
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/config"
edit: true
envKey: SONARR_CONFIG_PATH
labelEn: Sonarr Config Path
labelZh: Sonarr 配置路径
required: true
type: text
- default: "./data/tv"
edit: true
envKey: TV_SERIES_PATH
labelEn: TV Series Path
labelZh: 电视剧路径
required: true
type: text
- default: "./data/downloads"
edit: true
envKey: DOWNLOADS_PATH
labelEn: Downloads Path
labelZh: 下载路径
required: true
type: text

View File

@@ -0,0 +1,23 @@
services:
sonarr:
image: "linuxserver/sonarr:4.0.16"
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TIME_ZONE}
volumes:
- ${SONARR_CONFIG_PATH}:/config
- ${TV_SERIES_PATH}:/tv
- ${DOWNLOADS_PATH}:/downloads
ports:
- "${PANEL_APP_PORT_HTTP}:8989"
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true