summaryrefslogtreecommitdiffhomepage
path: root/public/v4/apps/qbittorrent.yml
blob: 6184fe27dd22e953d9e21c001bbb122936942a69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
captainVersion: 4
services:
    $$cap_appname:
        image: linuxserver/qbittorrent:$$cap_qbittorrent_version
        environment:
            TZ: $$cap_tz
            UMASK: 022
            WEBUI_PORT: $$cap_webui_port
        ports:
            - $$cap_webui_port:8080
            - 6881:6881
        hostname: $$cap_appname.$$cap_root_domain
        volumes:
            - $$cap_appname-config:/config
            - $$cap_path_to_downloads:/downloads
        caproverExtra:
            containerHttpPort: $$cap_webui_port
caproverOneClickApp:
    variables:
        - id: $$cap_qbittorrent_version
          label: qBittorrent Version
          defaultValue: version-14.3.5.99202105022253-7365-063844ed4ubuntu20.04.1
          description: Check out their Docker page for the valid tags https://hub.docker.com/r/linuxserver/qbittorrent/tags
          validRegex: /^([^\s^\/])+$/
        - id: $$cap_tz
          label: Time Zone
          defaultValue: Europe/Brussels
          description: Get yours from https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
          validRegex: /.{1,}/
        - id: $$cap_webui_port
          label: qBittorrent WebUI Port
          defaultValue: '8081'
          description: The port used to access qBittorrent
          validRegex: /\d/
        - id: $$cap_path_to_downloads
          label: Path to downloads folder
          defaultValue: qbittorrent-downloads
          description: Path to downloads folder where you want to save the downloaded torrents. You can mention an existing directory here too. Eg. /home/user/downloads/
          validRegex: /.{1,}/
    instructions:
        start: >-
            The qBittorrent project aims to provide an open-source software alternative to µTorrent.
            qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.
        end: >-
            qBittorrent is deployed and available as http://$$cap_appname.$$cap_root_domain.
            The default username/password is admin/adminadmin.
            Change username/password via the webui in the webui section of settings.
    displayName: qBittorrent
    isOfficial: true
    description: qBittorrent BitTorrent client
    documentation: Taken from https://hub.docker.com/r/linuxserver/qbittorrent.