21 lines
578 B
YAML
21 lines
578 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
app_proxy:
|
|
environment:
|
|
APP_HOST: qbittorrent_server_1
|
|
APP_PORT: 8080
|
|
PROXY_AUTH_ADD: "true"
|
|
|
|
server:
|
|
image: ghcr.io/hotio/qbittorrent:release-5.1.4@sha256:b547db036748d449c5cbd31635dc3b695ccc70424775c44ea91df18bd1da1ea4
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
# - UMASK=002
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/config:/config
|
|
# /app/qBittorrent/downloads is the default path set in qBittorrent
|
|
- ${UMBREL_ROOT}/data/storage/downloads:/app/qBittorrent/downloads
|
|
restart: on-failure
|