1
0

feat:添加sonarr到列表

This commit is contained in:
okxlin
2024-11-07 07:45:45 +08:00
parent 4225c1f55d
commit 52279f7eb9
9 changed files with 188 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
services:
sonarr:
image: "linuxserver/sonarr:latest"
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