mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-13 21:02:18 +08:00
24 lines
488 B
YAML
24 lines
488 B
YAML
services:
|
|
sonarr:
|
|
image: "linuxserver/sonarr:4.0.10"
|
|
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
|