Replies: 2 comments 1 reply
-
Here my compose file that works pretty well but for qbittorrent to works I need to wait 2-3 minutes each time I start it before it pass qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
network_mode: service:gluetun
container_name: qbittorrent
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- WEBUI_PORT=8080
- TORRENTING_PORT=6881
volumes:
- ./gluetun:/gluetun
- qb-config:/config
- ../data/torrents:/data/torrents # Change it to your use case
restart: unless-stopped
healthcheck:
test:
- CMD-SHELL
- curl --fail http://localhost:8080 || exit 1
interval: 30s
timeout: 3s
retries: 3
start_period: 60s
depends_on:
gluetun:
condition: service_healthy
gluetun:
image: qmcgaw/gluetun
container_name: gluetun
restart: always
stdin_open: true
tty: true
cap_add:
- NET_ADMIN
- SYS_MODULE
devices:
- /dev/net/tun:/dev/net/tun
ports:
- 8000:8000 # GT
- 8080:8080 # QB
volumes:
- ./gluetun:/gluetun
environment:
- VPN_SERVICE_PROVIDER=protonvpn
- VPN_TYPE=wireguard
- WIREGUARD_PRIVATE_KEY=${WIREGUARD_PRIVATE_KEY}
- DNS_ADDRESS=${WIREGUARD_DNS_ADDRESS}
- VPN_PORT_FORWARDING=on
- VPN_PORT_FORWARDING_PROVIDER=protonvpn
- VPN_PORT_FORWARDING_UP_COMMAND=/bin/sh -c 'wget -O- --retry-connrefused
--post-data "json={\"listen_port\":{{PORTS}}}"
http://127.0.0.1:8080/api/v2/app/setPreferences 2>&1'
- UPDATER_PERIOD=24h
- HEALTH_READ_TIMEOUT=10s
- HEALTH_INITIAL_DELAY=120s
- PUID=${PUID}
- PGID=${PGID}
- LOG_LEVEL=debug
- TZ=${TZ} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Everyone,
I need some help downloading. I am currently using a docker compose file to spin up my stack on my raspberry pi 5.
It was working as expected but since 8 days I have been unable to download anything.
All of my torrents are stalling, or stuck on downloading metadata stage.
The only discrepancy in the logs that I see is the following for Gluetun
INFO [vpn] You are running 1 commit behind the most recent latestINFO [vpn] You are running 1 commit behind the most recent latest
I tried to change the image and also rerun the docker compose as well as tried to do an update from portainer but no luck.
After this I tried Proton VPN:
After running this, I went to the logs, copied the forwarded port and set it on bittorrent via web ui. I am still unable to download anything.
If I separate out the torrent client I have no issues downloading and if I use a Firefox browser through the VPN, it works as expected. What am I missing here?
Beta Was this translation helpful? Give feedback.
All reactions