From 46f95d30a91634220726e2a8bb7dbea8dddd8b4c Mon Sep 17 00:00:00 2001 From: tylen Date: Sat, 12 Apr 2025 21:11:36 +0000 Subject: [PATCH] downloader: set correct nertwrok and pid settings --- services/downloader/docker-compose.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 +