Skip to content

Instantly share code, notes, and snippets.

@dsandstrom
Created July 4, 2026 07:33
Show Gist options
  • Select an option

  • Save dsandstrom/ffaa90ccf948c72cabe70391e105ec6d to your computer and use it in GitHub Desktop.

Select an option

Save dsandstrom/ffaa90ccf948c72cabe70391e105ec6d to your computer and use it in GitHub Desktop.
Docker compose file for nzbget, sonarr, radarr, and prowlarr using linuxserver images
services:
nzbget:
image: linuxserver/nzbget:version-v26.2
container_name: nzbget
environment:
- PUID=1000
- PGID=1000
- TZ=America/Los_Angeles
- NZBGET_USER=nzbget #optional
- NZBGET_PASS=tegbzn6789 #optional
volumes:
- ./configs/nzbget:/config
- /mnt/point/downloads:/downloads
ports:
- 6789:6789
restart: unless-stopped
network_mode: bridge
prowlarr:
image: linuxserver/prowlarr:2.4.0
container_name: prowlarr
environment:
- PUID=1000
- PGID=1000
- TZ=America/Los_Angeles
volumes:
- ./configs/prowlarr:/config
ports:
- 9696:9696
restart: unless-stopped
radarr:
image: linuxserver/radarr:6.2.1
container_name: radarr
environment:
- PUID=1000
- PGID=1000
- TZ=America/Los_Angeles
volumes:
- ./configs/radarr:/config
- /mnt/point/SharedVideos/Movies:/movies
- /mnt/point/downloads:/downloads
ports:
- 7878:7878
restart: unless-stopped
sonarr:
image: linuxserver/sonarr:4.0.19
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=America/Los_Angeles
volumes:
- ./configs/sonarr:/config
- /mnt/point/SharedVideos/TVShows:/tv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment