Important
Update 23 March 2025: This script is redudent if you use Gluetun VPN because it supports a post port forwarding script. See details here with a qBittorrent example.
A qBittorrent script that takes advantage of the docker healthcheck ability to do a few things every x seconds:
- Check if qBitorrent is up
- If yes, check if the configured listening port is the same as the forwarded port of the VPN provider.
- If they don't match, update the listening port.
If at any stage the results are unexpected, it will exit with code 1, meaning the container is classified as unhealthy in Docker.
The script assumes the following:
- The forwarded port is stored in a file mounted to
/forwarded_port.dat
- The
Bypass authentication for clients on localhost
setting in the qBittorrent Web UI options is enabled. - Logging is disabled by default, but if enabled the log file is
/healthcheck.log
. Mounting is optional.
An example healthcheck in docker-compose.yml
would look like this:
healthcheck:
test: ["CMD", "/qbit-healthcheck.sh"]
interval: 20s
timeout: 10s
start_period: 30s
NOTE: The script needs to be mounted to /qbit-healthcheck.sh
if you're using this healthcheck example.