VueTorrent/docker-compose.yml

20 lines
461 B
YAML
Raw Normal View History

2020-07-21 10:45:31 +03:00
services:
qbit:
image: linuxserver/qbittorrent:latest
container_name: qbit
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- UMASK_SET=022
- TZ=Europe/London
- WEBUI_PORT=8080
- DOCKER_MODS=ghcr.io/vuetorrent/vuetorrent-lsio-mod:latest
volumes:
2023-10-20 16:15:28 +03:00
- ./docker/config:/config
- ./docker/downloads:/downloads
ports:
2023-10-20 16:15:28 +03:00
- '8080:8080'
- '6881:6881'
- '6881:6881/udp'