File tree Expand file tree Collapse file tree 2 files changed +63
-0
lines changed Expand file tree Collapse file tree 2 files changed +63
-0
lines changed Original file line number Diff line number Diff line change
1
+ # documentation: https://docs.linuxserver.io/images/docker-qbittorrent/
2
+ # slogan: The qBittorrent project aims to provide an open-source software alternative to μTorrent.
3
+ # tags: torrent, streaming, webui
4
+ # logo: svgs/qbittorrent.svg
5
+ # port: 8080
6
+
7
+ services :
8
+ qbit :
9
+ image : " lscr.io/linuxserver/qbittorrent:latest"
10
+ environment :
11
+ - WEBUI_PORT=8080
12
+ - PUID=1000
13
+ - PGID=1000
14
+ volumes :
15
+ - " data-qbittorrent:/config"
16
+ - " data-downloads:/downloads"
17
+ - " data-torrents:/torrents"
18
+ healthcheck :
19
+ test :
20
+ - CMD
21
+ - wget
22
+ - " -q"
23
+ - " --spider"
24
+ - " http://127.0.0.1:8080/"
25
+ interval : 5s
26
+ timeout : 20s
27
+ retries : 10
28
+ vuetorrent-backend :
29
+ image : " ghcr.io/vuetorrent/vuetorrent-backend:latest"
30
+ environment :
31
+ - SERVICE_FQDN_QBITORRENT_8080
32
+ - PORT=8080
33
+ - " QBIT_BASE=http://qbit:8080"
34
+ - RELEASE_TYPE=stable
35
+ - " UPDATE_VT_CRON=0 * * * *"
36
+ volumes :
37
+ - " data-config:/config"
38
+ healthcheck :
39
+ test :
40
+ - CMD
41
+ - wget
42
+ - " -q"
43
+ - " --spider"
44
+ - " http://127.0.0.1:8080/"
45
+ interval : 5s
46
+ timeout : 20s
47
+ retries : 10
You can’t perform that action at this time.
0 commit comments