File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ services:
8
8
qbit :
9
9
image : " lscr.io/linuxserver/qbittorrent:latest"
10
10
environment :
11
- - WEBUI_PORT=8080
11
+ - WEBUI_PORT=${WEBUI_PORT:- 8080}
12
12
- PUID=1000
13
13
- PGID=1000
14
14
volumes :
15
- - " data- qbittorrent:/config"
16
- - " data -downloads:/downloads"
17
- - " data -torrents:/torrents"
15
+ - qbittorrent-config :/config
16
+ - qbittorrent -downloads:/downloads
17
+ - qbittorrent -torrents:/torrents
18
18
healthcheck :
19
19
test :
20
20
- CMD
@@ -25,16 +25,17 @@ services:
25
25
interval : 5s
26
26
timeout : 20s
27
27
retries : 10
28
+
28
29
vuetorrent-backend :
29
30
image : " ghcr.io/vuetorrent/vuetorrent-backend:latest"
30
31
environment :
31
32
- SERVICE_FQDN_QBITORRENT_8080
32
- - PORT=8080
33
- - " QBIT_BASE=http://qbit:8080 "
34
- - RELEASE_TYPE=stable
35
- - " UPDATE_VT_CRON=0 * * * *"
33
+ - PORT=${WEBUI_PORT:- 8080}
34
+ - QBIT_BASE=${SERVICE_FQDN_QBITORRENT}
35
+ - RELEASE_TYPE=${RELEASE_TYPE:- stable}
36
+ - UPDATE_VT_CRON=${UPDATE_VT_CRON:-" 0 * * * *"}
36
37
volumes :
37
- - " data -config:/config"
38
+ - vuetorrent -config:/config
38
39
healthcheck :
39
40
test :
40
41
- CMD
You can’t perform that action at this time.
0 commit comments