Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: "3.8"
- services:
- gluetun:
- image: qmcgaw/gluetun
- container_name: gluetun
- cap_add:
- - NET_ADMIN
- ports:
- - 8080:8080
- - 8988:8988
- - 9116:9116
- volumes:
- - /media-configs/gluetun:/gluetun
- - /media-configs/gluetun/wireguard:/gluetun/wireguard
- environment:
- - VPN_TYPE=wireguard
- - VPN_SERVICE_PROVIDER=mullvad
- - TZ=America/New_York
- - FIREWALL=on
- - DOT=off
- - DNS_ADDRESS=1.1.1.1
- restart: unless-stopped
- qbittorrent:
- image: lscr.io/linuxserver/qbittorrent
- container_name: qbittorrent
- network_mode: "container:gluetun"
- depends_on:
- - gluetun
- environment:
- - PUID=0
- - PGID=0
- - TZ=America/New_York
- - WEBUI_PORT=8080
- volumes:
- - /media-configs/qbittorrent-reset:/config
- - /DATA/Media:/media
- restart: unless-stopped
- sonarr:
- image: lscr.io/linuxserver/sonarr
- container_name: sonarr
- environment:
- - PUID=0
- - PGID=0
- - TZ=America/New_York
- volumes:
- - /media-configs/sonarr:/config
- - /DATA/Media/TV Shows:/tv
- - /DATA/Media:/downloads
- ports:
- - 8990:8989
- restart: unless-stopped
- jackett:
- image: lscr.io/linuxserver/jackett
- container_name: jackett
- environment:
- - PUID=0
- - PGID=0
- - TZ=America/New_York
- volumes:
- - /media-configs/jackett:/config
- - /DATA/Media:/downloads
- ports:
- - 9126:9117
- restart: unless-stopped
Add Comment
Please, Sign In to add comment