mirror of
https://git.myvelabs.com/docker/docker-compose.yaml.git
synced 2025-12-18 06:56:17 +00:00
27 lines
547 B
YAML
27 lines
547 B
YAML
services:
|
|
|
|
qbittorrent-nox:
|
|
image: ${REGISTRY}/qbittorrent-nox
|
|
container_name: qbittorrent-nox
|
|
restart: unless-stopped
|
|
ports:
|
|
- ${QBITTORRENT_PORT:-8080}:8080/tcp
|
|
- 6881:6881/tcp
|
|
- 6881:6881/udp
|
|
environment:
|
|
PUID: 1000
|
|
PGID: 984
|
|
QBT_EULA: accept
|
|
QBT_VERSION: latest
|
|
QBT_WEBUI_PORT: 8080
|
|
stop_grace_period: 30m
|
|
tty: true
|
|
volumes:
|
|
- ./config:/config
|
|
- ./downloads:/downloads
|
|
networks:
|
|
- qbittorrent
|
|
|
|
networks:
|
|
qbittorrent:
|
|
external: false
|