summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorEmilien Lambert <[email protected]>2024-03-29 05:24:10 +0100
committerGitHub <[email protected]>2024-03-28 21:24:10 -0700
commit89a3e2b221d44156af31fbcb957d9f8df95094e8 (patch)
treef7e39cd44054a3bd97f583d77ec7a79be64254e5
parent4008028d99aa9d1e7a5c73427e973a1df9bc2c05 (diff)
downloadcaprover-one-click-apps-89a3e2b221d44156af31fbcb957d9f8df95094e8.tar.gz
caprover-one-click-apps-89a3e2b221d44156af31fbcb957d9f8df95094e8.zip
add deluge one click app (#1076)
* add deluge one click app * fix formatter-write and add icon
-rw-r--r--public/v4/apps/deluge.yml60
-rw-r--r--public/v4/logos/deluge.pngbin0 -> 3497 bytes
2 files changed, 60 insertions, 0 deletions
diff --git a/public/v4/apps/deluge.yml b/public/v4/apps/deluge.yml
new file mode 100644
index 0000000..502171b
--- /dev/null
+++ b/public/v4/apps/deluge.yml
@@ -0,0 +1,60 @@
+captainVersion: 4
+services:
+ '$$cap_appname':
+ image: linuxserver/deluge:$$cap_version
+ environment:
+ TZ: '$$cap_tz'
+ PUID: '$$cap_puid'
+ PGID: '$$cap_pgid'
+ hostname: $$cap_appname.$$cap_root_domain
+ volumes:
+ - '$$cap_appname-config:/config'
+ - '$$cap_appname-downloads:/downloads'
+ - '$$cap_appname-watch:/watch'
+ caproverExtra:
+ containerHttpPort: '8112'
+caproverOneClickApp:
+ variables:
+ - id: '$$cap_version'
+ label: Deluge Version
+ defaultValue: '2.1.1'
+ description: Check out their Docker page for the valid tags https://hub.docker.com/r/linuxserver/deluge/tags
+ validRegex: "/^([^\\s^\\/])+$/"
+ - id: '$$cap_tz'
+ label: Time Zone
+ defaultValue: Europe/Paris
+ description: Get yours from https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
+ validRegex: '/.{1,}/'
+ - id: '$$cap_puid'
+ label: PUID
+ defaultValue: '1000'
+ description: User ID
+ validRegex: '/^\d+$/'
+ - id: '$$cap_pgid'
+ label: PGID
+ defaultValue: '1000'
+ description: Group ID
+ validRegex: '/^\d+$/'
+ - id: $$cap_appname-downloads
+ label: Path downloads folder
+ defaultValue: /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,}/
+ - id: $$cap_appname-watch
+ label: Path watch folder
+ defaultValue: /watch
+ description: Path to watch folder if you want to use AutoAdd plugin. You can mention an existing directory here too. Eg. /home/user/watch/
+ validRegex: /.{1,}/
+ instructions:
+ start: |-
+ A lightweight, Free Software, cross-platform BitTorrent client with Full Encryption, WebUI, Plugin System, etc.
+ More details: https://deluge-torrent.org
+ end: |-
+ Deluge has been successfully deployed!
+ Is available as [http://$$cap_appname.$$cap_root_domain](http://$$cap_appname.$$cap_root_domain)
+ The default username is `admin` and the default password is `deluge`.
+ You must change the password after logging in for the first time.
+ displayName: Deluge
+ isOfficial: true
+ description: A lightweight, Free Software, cross-platform BitTorrent client with Full Encryption, WebUI, Plugin System, etc.
+ documentation: See https://deluge-torrent.org
diff --git a/public/v4/logos/deluge.png b/public/v4/logos/deluge.png
new file mode 100644
index 0000000..374de52
--- /dev/null
+++ b/public/v4/logos/deluge.png
Binary files differ