Skip to content

Commit 02fbd25

Browse files
authored
Merge pull request coollabsio#3715 from statickidz/add-qbittorrent-template
Add qBittorrent template
2 parents a61ced8 + 43e8ab7 commit 02fbd25

File tree

2 files changed

+63
-0
lines changed

2 files changed

+63
-0
lines changed

public/svgs/qbittorrent.svg

Lines changed: 16 additions & 0 deletions
Loading

templates/compose/qbittorrent.yaml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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

0 commit comments

Comments
 (0)