Skip to content

Instantly share code, notes, and snippets.

@tdaron
Created September 2, 2021 09:54
Show Gist options
  • Save tdaron/0db37f60bf5b8e78cbf25bb426bb85df to your computer and use it in GitHub Desktop.
Save tdaron/0db37f60bf5b8e78cbf25bb426bb85df to your computer and use it in GitHub Desktop.
version: '2.1'
services:
sonarr:
image: ghcr.io/linuxserver/sonarr
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Brussels
volumes:
- 'BASE_INSTALL/config/sonarr/:/config'
- 'BASE_INSTALL/tv/:/tv'
- 'BASE_INSTALL/downloads/:/downloads'
ports:
- '8989:8989'
restart: unless-stopped
radarr:
image: ghcr.io/linuxserver/radarr
container_name: radarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Brussels
volumes:
- 'BASE_INSTALL/config/radarr/:/config'
- 'BASE_INSTALL/movies/:/movies'
- 'BASE_INSTALL/downloads/:/downloads'
ports:
- '7878:7878'
restart: unless-stopped
qbittorrent:
image: ghcr.io/linuxserver/qbittorrent
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Brussels
- UMASK_SET=022
- WEBUI_PORT=9988
volumes:
- BASE_INSTALL/config/qbittorrent:/config
- BASE_INSTALL/downloads:/downloads
ports:
- 9988:9988
restart: unless-stopped
jackett:
image: ghcr.io/linuxserver/jackett
container_name: jackett
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Brussels
- AUTO_UPDATE=true
volumes:
- 'BASE_INSTALL/config/jackett/:/config'
- 'BASE_INSTALL/downloads:/downloads'
ports:
- '9117:9117'
restart: unless-stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment