27 lines
806 B
Text
Executable file
27 lines
806 B
Text
Executable file
services:
|
|
qbittorrent:
|
|
image: lscr.io/linuxserver/qbittorrent:latest
|
|
container_name: qbittorrent
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
- WEBUI_PORT=8080
|
|
- TORRENTING_PORT=6881
|
|
volumes:
|
|
- /pool/docker/qbittorrent/data:/config
|
|
#files(internal)
|
|
- /pool/torrenting:/downloads
|
|
#media folders
|
|
- /pool/music:/mnt/music
|
|
- /pool/tv:/mnt/tv
|
|
- /pool/movies:/mnt/movies
|
|
- /pool/other:/mnt/other
|
|
- /mnt/SATA-22TB-host15/qbittorrent/downloads:/q-downloads
|
|
- /mnt/SATA-22TB-host15/qbittorrent/completed:/q-completed
|
|
- /mnt/SATA-22TB-host15/qbittorrent/seeding:/q-seeding
|
|
ports:
|
|
- 8080:8080
|
|
- 6881:6881
|
|
- 6881:6881/udp
|
|
restart: unless-stopped
|