18 lines
1000 B
YAML
18 lines
1000 B
YAML
# SAMPLE DOCKER COMPOSE
|
|
services:
|
|
qbt-gluetun-portmgr:
|
|
container_name: qbt-gluetun-portmgr
|
|
image: docker.io/blinkfink182/qbt-gluetun-portmgr
|
|
environment:
|
|
- SCHEDULE=15 # OPTIONAL: time in minutes to wait between check, 60 is default
|
|
# BELOW ARE ALL REQUIRED
|
|
- QBTHOST=host.docker.internal # qbittorrent host
|
|
- QBTPORT=8787 # qbittorrent port
|
|
- QBTUSER=admin # qbittorrent webUI username
|
|
- QBTPASSWORD=adminpass # qbittorrent webUI password
|
|
#- NOTIFICATIONWEBHOOKURL=https://discord.com/api/webhooks/<webhookURL> # DEPRECATED discord notification wehook URL
|
|
#- DISCORDWEBHOOKURL=https://discord.com/api/webhooks/<webhookURL> # discord notification wehook URL
|
|
#- APPRISEWEBHOOKURL=https://apprisehost/notify/config # apprise notification url
|
|
#- APPRISEWEBHOOKTAG=all # apprise notification tag
|
|
volumes:
|
|
- C:/Docker/qbittorrent/gluetun/tmp:/tmp # REQUIRED: Path to where the 'forwarded_port' file from gluetun is stored |