Skip to content

Instantly share code, notes, and snippets.

@nlarzon
Created June 4, 2021 18:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nlarzon/bc24f518e8b30b9d244d4a7ec87772f4 to your computer and use it in GitHub Desktop.
Save nlarzon/bc24f518e8b30b9d244d4a7ec87772f4 to your computer and use it in GitHub Desktop.
Sonarr setup
---
version: "3"
services:
sabnzb:
image: linuxserver/sabnzbd
container_name: sabnzb
environment:
- TZ=TZ=Europe/Amsterdam
- PUID=501 # set to UID of your user
- PGID=501 # set to GID of your use
volumes:
- $HOME/.config/sabnzb:/config # sab config directory
- $HOME/Downloads/complete:/downloads
- $HOME/Downloads/incomplete:/incomplete-downloads
ports:
- 8080:8080 # port mapping
restart: unless-stopped
sonarr:
image: ghcr.io/linuxserver/sonarr
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Amsterdam
volumes:
- $HOME/.config/sonarr:/config
- /media/tv:/tv
- $HOME/Downloads/complete:/downloads
ports:
- 8989:8989
restart: unless-stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment