From 997dd690906208be96d474ab901b85547156d1e2 Mon Sep 17 00:00:00 2001 From: Unknown Date: Thu, 5 Mar 2020 14:23:04 -0800 Subject: [PATCH] qbittorrent tested working --- .templates/qbittorrent/service.yml | 16 ++++++++++++++++ menu.sh | 4 +++- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .templates/qbittorrent/service.yml diff --git a/.templates/qbittorrent/service.yml b/.templates/qbittorrent/service.yml new file mode 100644 index 000000000..02eef4ff0 --- /dev/null +++ b/.templates/qbittorrent/service.yml @@ -0,0 +1,16 @@ + qbittorrent: + image: linuxserver/qbittorrent + container_name: qbittorrent + environment: + - PUID=1000 + - PGID=1000 + - UMASK_SET=022 + - WEBUI_PORT=15080 + volumes: + - ./volumes/qbittorrent/config:/config + - ./volumes/qbittorrent/downloads:/downloads + ports: + - 6881:6881 + - 6881:6881/udp + - 15080:15080 + - 1080:1080 diff --git a/menu.sh b/menu.sh index 6c11d62f2..9d163d681 100755 --- a/menu.sh +++ b/menu.sh @@ -28,11 +28,13 @@ declare -A cont_array=( [diyhue]="diyHue" [homebridge]="Homebridge" [python]="Python 3" + [qbittorrent]="qbittorrent" ) declare -a armhf_keys=("portainer" "nodered" "influxdb" "grafana" "mosquitto" "telegraf" "mariadb" "postgres" "adminer" "openhab" "zigbee2mqtt" "pihole" "plex" "tasmoadmin" "rtl_433" "espruinohub" - "motioneye" "webthings_gateway" "blynk_server" "nextcloud" "diyhue" "homebridge" "python") + "motioneye" "webthings_gateway" "blynk_server" "nextcloud" "diyhue" "homebridge" "python" + "qbittorrent") sys_arch=$(uname -m)