Added qBittorrent
This commit is contained in:
@@ -3,17 +3,30 @@ services:
|
||||
qbittorrent:
|
||||
image: lscr.io/linuxserver/qbittorrent:latest
|
||||
container_name: qbittorrent
|
||||
network_mode: "host"
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Oslo
|
||||
- WEBUI_PORT=8080
|
||||
- TORRENTING_PORT=6881
|
||||
- PUID=${PUID}
|
||||
- PGID=${PGID}
|
||||
- TZ=${TZ}
|
||||
- WEBUI_PORT=${WEBUI_PORT}
|
||||
- TORRENTING_PORT=${TORRENTING_PORT}
|
||||
volumes:
|
||||
- ./appdata:/config
|
||||
- ./downloads:/downloads #optional
|
||||
- /home/rcadmin/docker/qbittorrent/data/config:/config
|
||||
- cifs_mount:/downloads #optional
|
||||
ports:
|
||||
- 8080:8080
|
||||
- 6881:6881
|
||||
- 6881:6881/udp
|
||||
- ${WEBUI_PORT}:8080
|
||||
- ${TORRENTING_PORT}:6881
|
||||
- ${TORRENTING_PORT}:6881/udp
|
||||
restart: unless-stopped
|
||||
deploy:
|
||||
placement:
|
||||
constraints:
|
||||
- node.role == manager
|
||||
|
||||
volumes:
|
||||
cifs_mount:
|
||||
driver: local
|
||||
driver_opts:
|
||||
type: cifs
|
||||
device: //192.168.50.203/Datadisk
|
||||
o: "username=${USERNAME},password=${PASSWORD},vers=3.0,uid=${PUID},gid=${PGID}"
|
||||
|
||||
Reference in New Issue
Block a user