Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- networks:
- media-network:
- driver: bridge
- services:
- gluetun:
- image: qmcgaw/gluetun
- container_name: gluetun
- cap_add:
- - NET_ADMIN
- devices:
- - /dev/net/tun:/dev/net/tun
- environment:
- - TZ=America/NewYork
- - VPN_SERVICE_PROVIDER=nordvpn
- - VPN_TYPE=wireguard
- - WIREGUARD_PRIVATE_KEY=xxxxxxxxxxxxxxxxxxxx
- - WIREGUARD_ADDRESSES=10.5.0.2/32
- - SERVER_COUNTRIES=Netherlands
- - UPDATER_PERIOD=24h
- - DOT=off
- - DNS_KEEP_NAMESERVER=on
- - FIREWALL_VPN_OUTPUT_PORTS=0:65535
- - FIREWALL_OUTBOUND_SUBNETS=192.168.0.0/24,192.168.97.0/24,192.168.215.0/24
- - FIREWALL_INPUT_PORTS=6881,51413
- volumes:
- - gluetun_config:/gluetun
- restart: unless-stopped
- networks:
- - media-network
- ports:
- - 8989:8989 # Sonarr
- - 7878:7878 # Radarr
- - 9696:9696 # Prowlarr
- - 8080:8080 # qBittorrent WebUI
- - 6881:6881 # qBittorrent TCP
- - 6881:6881/udp # qBittorrent UDP
- sonarr:
- image: linuxserver/sonarr:latest
- container_name: sonarr
- environment:
- - PUID=501
- - PGID=20
- - TZ=America/NewYork
- volumes:
- - sonarr_config:/config
- - media:/tv
- - downloads:/downloads
- network_mode: "container:gluetun"
- restart: unless-stopped
- depends_on:
- - gluetun
- radarr:
- image: linuxserver/radarr:latest
- container_name: radarr
- environment:
- - PUID=501
- - PGID=20
- - TZ=America/NewYork
- volumes:
- - radarr_config:/config
- - media:/movies
- - downloads:/downloads
- network_mode: "container:gluetun"
- restart: unless-stopped
- depends_on:
- - gluetun
- prowlarr:
- image: linuxserver/prowlarr:latest
- container_name: prowlarr
- environment:
- - PUID=501
- - PGID=20
- - TZ=America/NewYork
- volumes:
- - prowlarr_config:/config
- network_mode: "container:gluetun"
- restart: unless-stopped
- depends_on:
- - gluetun
- qbittorrent:
- image: linuxserver/qbittorrent:latest
- container_name: qbittorrent
- environment:
- - PUID=501
- - PGID=20
- - TZ=America/NewYork
- - WEBUI_PORT=8080
- volumes:
- - qbittorrent_config:/config
- - downloads:/downloads
- network_mode: "container:gluetun"
- restart: unless-stopped
- depends_on:
- - gluetun
- plex:
- image: linuxserver/plex:latest
- container_name: plex
- environment:
- - PUID=501
- - PGID=20
- - TZ=America/NewYork
- - VERSION=docker
- volumes:
- - plex_config:/config
- - /data:/data
- ports:
- - 32400:32400
- restart: unless-stopped
- networks:
- - media-network
- overseerr:
- image: linuxserver/overseerr:latest
- container_name: overseerr
- environment:
- - PUID=501
- - PGID=20
- - TZ=America/NewYork
- volumes:
- - overseerr_config:/config
- ports:
- - 5055:5055
- restart: unless-stopped
- networks:
- - media-network
- volumes:
- gluetun_config:
- sonarr_config:
- radarr_config:
- prowlarr_config:
- qbittorrent_config:
- plex_config:
- overseerr_config:
- media:
- downloads:
Add Comment
Please, Sign In to add comment