Last active
August 22, 2023 18:42
-
-
Save tonycoco/8a6b4ae62eff2ee9247bb605ae361b0e to your computer and use it in GitHub Desktop.
Setting up Synology with Sabnzbd/Sonarr/Radarr/Nzbget/Watchtower using Docker Compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.9" | |
services: | |
sabnzbd: | |
image: linuxserver/sabnzbd | |
container_name: sabnzbd | |
environment: | |
- PUID=1026 | |
- PGID=100 | |
- TZ=America/Chicago | |
volumes: | |
- /etc/localtime:/etc/localtime:ro | |
- /volume1/docker/sabnzbd:/config | |
- /volume1/downloads:/downloads | |
ports: | |
- 8080:8080 | |
restart: always | |
nzbget: | |
image: linuxserver/nzbget | |
container_name: nzbget | |
environment: | |
- PUID=1026 | |
- PGID=100 | |
- TZ=America/Chicago | |
volumes: | |
- /etc/localtime:/etc/localtime:ro | |
- /volume1/downloads:/downloads | |
- /volume1/docker/nzbget:/config | |
ports: | |
- 6789:6789 | |
restart: always | |
sonarr: | |
image: linuxserver/sonarr | |
container_name: sonarr | |
environment: | |
- PUID=1026 | |
- PGID=100 | |
- TZ=America/Chicago | |
volumes: | |
- /etc/localtime:/etc/localtime:ro | |
- /volume1/docker/sonarr:/config | |
- /volume1/tv:/tv | |
- /volume1/downloads:/downloads | |
ports: | |
- 8989:8989 | |
restart: always | |
radarr: | |
image: linuxserver/radarr | |
container_name: radarr | |
environment: | |
- PUID=1026 | |
- PGID=100 | |
- TZ=America/Chicago | |
volumes: | |
- /etc/localtime:/etc/localtime:ro | |
- /volume1/docker/radarr:/config | |
- /volume1/movies:/movies | |
- /volume1/downloads:/downloads | |
ports: | |
- 7878:7878 | |
restart: always | |
watchtower: | |
image: containrrr/watchtower | |
container_name: watchtower | |
restart: always | |
environment: | |
- WATCHTOWER_CLEANUP=true | |
- TZ=America/Chicago | |
volumes: | |
- /etc/localtime:/etc/localtime:ro | |
- /var/run/docker.sock:/var/run/docker.sock | |
networks: | |
default: | |
name: nas |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment