mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-24 18:36:14 +03:00
18 lines
399 B
YAML
18 lines
399 B
YAML
version: '3.8'
|
|
services:
|
|
qbit:
|
|
image: linuxserver/qbittorrent:latest
|
|
container_name: qbit
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/London
|
|
- UMASK_SET=022
|
|
- WEBUI_PORT=8080
|
|
volumes:
|
|
- ./docker/config:/config
|
|
- ./docker/downloads:/downloads
|
|
- ./vuetorrent:/vuetorrent
|
|
ports:
|
|
- '8080:8080'
|
|
restart: unless-stopped
|