diff --git a/services/downloader/docker-compose.yml b/services/downloader/docker-compose.yml index e8cb2d7..8a9921e 100644 --- a/services/downloader/docker-compose.yml +++ b/services/downloader/docker-compose.yml @@ -19,13 +19,14 @@ services: - WIREGUARD_PRIVATE_KEY=${WIREGUARD_PRIVATE_KEY} - WIREGUARD_ADDRESSES=${WIREGUARD_ADDRESSES} - SERVER_COUNTRIES=${SERVER_COUNTRIES} + - FIREWALL_VPN_INPUT_PORTS=${SVC_PORT_2} # See https://github.com/qdm12/gluetun-wiki/tree/main/setup#setup qbittorrent: image: lscr.io/linuxserver/qbittorrent:latest container_name: qbittorrent environment: - - PUID=1000 - - PGID=1000 + - PUID=1001 + - PGID=1001 - TZ=Etc/UTC - WEBUI_PORT=${SVC_PORT_1} volumes: @@ -33,3 +34,6 @@ services: - ${QBIT_TORRENT_DOWNLOADS_PATH}:/downloads restart: unless-stopped network_mode: "service:gluetun" + depends_on: + - gluetun +