48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
version: '3.9'
|
|
services:
|
|
sabnzbd:
|
|
image: lscr.io/linuxserver/sabnzbd@sha256:e81ff09d2ec6b8b07217f1d704b0ae0ed1b54551857589ffd8aca0e7a110b81b
|
|
container_name: sabnzbd
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /docker/appdata/sabnzbd:/config
|
|
- /data/usenet:/data/usenet:rw
|
|
ports:
|
|
- 8080:8080
|
|
restart: unless-stopped
|
|
|
|
arch-qbittorrentvpn:
|
|
image: binhex/arch-qbittorrentvpn@sha256:7b2e706abf1bb9df8cb900daf9903634c69ef6ae40b9c939f0f5a178a00ba6cc
|
|
container_name: qbittorrentvpn
|
|
volumes:
|
|
- '/docker/appdata/qbitty:/config'
|
|
- '/data/torrents/:/data/torrents'
|
|
- '/etc/localtime:/etc/localtime:ro'
|
|
ports:
|
|
- '49550:49550'
|
|
- '49551:8118'
|
|
environment:
|
|
- VPN_ENABLED=yes
|
|
- VPN_PROV=protonvpn
|
|
- VPN_CLIENT=wireguard
|
|
- VPN_USER=mafyuh+pmp
|
|
- VPN_PASS=
|
|
- STRICT_PORT_FORWARD=yes
|
|
- LAN_NETWORK=10.0.0.0/24
|
|
- ENABLE_PRIVOXY=yes
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- WEBUI_PORT=49550
|
|
- UMASK=1000
|
|
- DEBUG=false
|
|
cap_add:
|
|
- NET_ADMIN
|
|
sysctls:
|
|
- net.ipv4.conf.all.src_valid_mark=1
|
|
privileged: true
|
|
network_mode: bridge
|
|
restart: unless-stopped
|