servarr-stack – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 [Unit]
2 Description=qbittorrent
3 After=docker.service
4 Requires=docker.service
5 StartLimitIntervalSec=0
6  
7 [Service]
8 Restart=always
9 RestartSec=5s
10 ExecStartPre=/bin/sh -c '/usr/bin/docker network create entertainment || true'
11 ExecStartPre=/usr/bin/docker pull lscr.io/linuxserver/qbittorrent:latest
12 ExecStart=/usr/bin/docker run --name=qbittorrent \
13 --rm \
14 --hostname qbittorrent \
15 --net=entertainment \
16 --interactive \
17 --user 0:0 \
18 -p 8123:8123 \
19 -p 62296:62296 \
20 -p 62296:62296/udp \
21 -e TZ=Etc/UTC \
22 -e TORRENTING_PORT=62296 \
23 -e WEBUI_PORT=8123 \
24 -v /mnt/swarm/docker/data/qbittorrent/:/config \
25 -v /mnt/swarm/downloads/:/downloads \
26 -l traefik.http.services.qbittorrent.loadbalancer.server.port=8123 \
27 lscr.io/linuxserver/qbittorrent:latest
28 ExecStop=/usr/bin/docker stop qbittorrent
29 ExecStop=/usr/bin/docker rm -f qbittorrent
30 TimeoutSec=300
31 Environment=DOCKER_CONFIG=/etc/docker
32  
33 [Install]
34 WantedBy=multi-user.target