added new private key & added qbit back in

This commit is contained in:
Peter Wood
2022-09-26 11:23:21 -04:00
parent fec7383bec
commit 91d6255672

View File

@@ -13,6 +13,7 @@ services:
- 8388:8388/tcp # Shadowsocks - 8388:8388/tcp # Shadowsocks
- 8388:8388/udp # Shadowsocks - 8388:8388/udp # Shadowsocks
- 8080:8080/tcp # qbittorrent webUI - 8080:8080/tcp # qbittorrent webUI
- 8085:8085/tcp # sabnzbd webUI
volumes: volumes:
- /vpn-gluetun:/gluetun - /vpn-gluetun:/gluetun
environment: environment:
@@ -21,14 +22,27 @@ services:
- VPN_TYPE=wireguard - VPN_TYPE=wireguard
# Wireguard: # Wireguard:
# - mullvad device name "welcoming labrador" # - mullvad device name "welcoming labrador"
- WIREGUARD_PRIVATE_KEY=KM9brVZD0P3VlBJVYkQPe5rr17cr/orNWphTgOSqakA= - WIREGUARD_PRIVATE_KEY=YIGDvBo6zb5NP4uQaBlySPwehUmS2cAr+mrnl/IiEm0=
- WIREGUARD_ADDRESSES=10.66.1.218/32 - WIREGUARD_ADDRESSES=10.65.241.28/32
- TZ=America/New_York # Timezone for accurate log times - TZ=America/New_York # Timezone for accurate log times
# optional, server_[countries, cities] # optional, server_[countries, cities]
# - SERVER_COUNTRIES: Comma separated list of countries # - SERVER_COUNTRIES: Comma separated list of countries
# - SERVER_CITIES=Stockholm # - SERVER_CITIES=Stockholm
# - SERVER_HOSTNAMES: Comma separated list of server hostnames # - SERVER_HOSTNAMES: Comma separated list of server hostnames
restart: always restart: always
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
- WEBUI_PORT=8080
volumes:
- /mnt/d/docker/qbittorrent/config:/config
- /mnt/d/media/downloads:/downloads
network_mode: "service:gluetun"
restart: always
sabnzbd: sabnzbd:
image: lscr.io/linuxserver/sabnzbd:latest image: lscr.io/linuxserver/sabnzbd:latest
container_name: sabnzbd container_name: sabnzbd
@@ -40,6 +54,6 @@ services:
- /mnt/d/docker/sabnzbd/config:/config - /mnt/d/docker/sabnzbd/config:/config
- /mnt/d/media/downloads/sabnzbd/complete:/downloads - /mnt/d/media/downloads/sabnzbd/complete:/downloads
- /mnt/d/media/downloads/sabnzbd/incomplete/:/incomplete-downloads - /mnt/d/media/downloads/sabnzbd/incomplete/:/incomplete-downloads
# network_mode: "service:gluetun" forces qbittorrent to connect to the internet through the VPN defined in the gluetun container above # network_mode: "service:gluetun" forces sabnzbd to connect to the internet through the VPN defined in the gluetun container above
network_mode: "service:gluetun" network_mode: "service:gluetun"
restart: always restart: always