Add Sonarr in stack

This commit is contained in:
Navratan Lal Gupta 2022-07-10 13:11:10 +05:30
parent e4d94a12d9
commit 1d982bac44

View File

@ -15,7 +15,8 @@ services:
- 51413:51413/udp - 51413:51413/udp
volumes: volumes:
- tx-config:/config - tx-config:/config
- movies:/downloads - movies:/downloads/movies
- tvshows:/downloads/tvshows
- tx-watch:/watch - tx-watch:/watch
restart: "unless-stopped" restart: "unless-stopped"
@ -30,9 +31,23 @@ services:
- 7878:7878 - 7878:7878
volumes: volumes:
- radarr-config:/config - radarr-config:/config
- movies:/downloads - movies:/downloads/movies
restart: "unless-stopped" restart: "unless-stopped"
sonarr:
container_name: sonarr
image: lscr.io/linuxserver/sonarr:latest
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- sonarr-config:/config
- tvshows:/downloads/tvshows #optional
ports:
- 8989:8989
restart: unless-stopped
jackett: jackett:
container_name: jackett container_name: jackett
image: lscr.io/linuxserver/jackett:latest image: lscr.io/linuxserver/jackett:latest
@ -56,7 +71,7 @@ services:
- TZ=Europe/London - TZ=Europe/London
volumes: volumes:
- jellyfin-config:/config - jellyfin-config:/config
- tvseries:/data/tvshows - tvshows:/data/tvshows
- movies:/data/movies - movies:/data/movies
ports: ports:
- 8096:8096 - 8096:8096
@ -78,11 +93,12 @@ services:
volumes: volumes:
tx-config: tx-config:
movies: movies:
tvshows:
tx-watch: tx-watch:
radarr-config: radarr-config:
sonarr-config:
jackett-config: jackett-config:
jackett-blackhole: jackett-blackhole:
jellyfin-config: jellyfin-config:
tvseries:
nginx-config: nginx-config:
letsencrypt: letsencrypt: