15 lines
366 B
YAML
15 lines
366 B
YAML
services:
|
|
qbittorrent:
|
|
image: lscr.io/linuxserver/qbittorrent:latest
|
|
container_name: qbittorrent
|
|
hostname: qbittorrent.jojo
|
|
volumes:
|
|
- ./config:/config
|
|
# - /mnt/c/Users/$USER/Downloads/:/downloads #optional
|
|
- ~/Downloads/:/downloads
|
|
ports:
|
|
- 5555:8080
|
|
- 6881:6881
|
|
- 6881:6881/udp
|
|
restart: unless-stopped
|