VueTorrent/docker-compose.yml

19 lines
479 B
YAML
Raw Normal View History

2020-07-21 10:45:31 +03:00
version: '3.6'
services:
qbittorrent:
2020-11-07 15:05:31 +03:00
image: linuxserver/qbittorrent:latest
2020-07-21 10:45:31 +03:00
container_name: qbit
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- UMASK_SET=022
- WEBUI_PORT=8080
volumes:
- ./config:/config
2021-07-11 09:44:22 +03:00
- /Users/gvv/Downloads:/downloads
2020-07-21 10:45:31 +03:00
- ./vuetorrent:/vuetorrent
ports:
- 8080:8080
restart: unless-stopped