From dc25a54e12465df6ded0b1021a5c1063dda9f5da Mon Sep 17 00:00:00 2001 From: tonitrus Date: Mon, 6 Oct 2025 21:11:50 +0200 Subject: [PATCH] add container name and custom health check, disable block lists --- torrent/docker-compose.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/torrent/docker-compose.yml b/torrent/docker-compose.yml index 115cdfb..cda962a 100644 --- a/torrent/docker-compose.yml +++ b/torrent/docker-compose.yml @@ -1,6 +1,7 @@ services: gluetun: image: qmcgaw/gluetun:latest + container_name: gluetun cap_add: - NET_ADMIN devices: @@ -20,7 +21,15 @@ services: - WIREGUARD_ADDRESSES=10.189.105.151/32 - SERVER_COUNTRIES=Netherlands - FIREWALL_VPN_INPUT_PORTS=19769 + - BLOCK_MALICIOUS=off + - BLOCK_SURVEILLANCE=off + - BLOCK_ADS=off - TZ=Europe/Vienna + healthcheck: + test: ping -c 1 www.google.com || exit 1 + interval: 60s + timeout: 20s + retries: 5 labels: folder.view2: "Networking"