From 8f6d6e533be0b29edda8a31ab19b9700fd555a4e Mon Sep 17 00:00:00 2001 From: Qballjos Date: Fri, 26 Feb 2021 10:11:11 +0100 Subject: [PATCH] create rr stack and template --- Template/Stack/rr_mtm.yml | 42 +++++++++++++++++++++++++++ Template/test.json | 61 +++++++++++++++++++++++++++++++++++++-- 2 files changed, 101 insertions(+), 2 deletions(-) create mode 100644 Template/Stack/rr_mtm.yml diff --git a/Template/Stack/rr_mtm.yml b/Template/Stack/rr_mtm.yml new file mode 100644 index 0000000..9b420fc --- /dev/null +++ b/Template/Stack/rr_mtm.yml @@ -0,0 +1,42 @@ +--- +version: "3.7" +services: + lidarr: + container_name: lidarr + environment: + - "PUID=${PUID}" + - "PGID=${PGID}" + - UMASK=002 + - "TZ=${TZ}" + image: hotio/lidarr + ports: + - "${LIDARRPORT}:8686" + volumes: + - "${APPDATA}/lidarr:/config" + - "${DOWNLOAD}:/data" + radarr: + container_name: radarr + environment: + - "PUID=${PUID}" + - "PGID=${PGID}" + - UMASK=002 + - "TZ=${TZ}" + image: hotio/radarr + ports: + - "${RADARRPORT}:7878" + volumes: + - "${APPDATA}/radarr:/config" + - "${DOWNLOAD}:/data" + sonarr: + container_name: sonarr + environment: + - "PUID=${PUID}" + - "PGID=${PGID}" + - UMASK=002 + - "TZ=${TZ}" + image: hotio/sonarr + ports: + - "${SONARRPORT}:8989" + volumes: + - "${APPDATA}/sonarr:/config" + - "${DOWNLOAD}:/data" diff --git a/Template/test.json b/Template/test.json index dd1ff04..bd2afaa 100644 --- a/Template/test.json +++ b/Template/test.json @@ -174,7 +174,7 @@ } ], "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/openvpn-as-icon.png", - "name": "VPN Download", + "name": "Movie, TV, Music Download", "note": "A stack of dockers (qBittorent, NZBget, Jackett, NZBhydra2) to use with VPN service to shield your privacy.", "platform": "linux", "repository": { @@ -183,5 +183,62 @@ }, "title": "VPN Download", "type": 3 - }] + }], + "categories": [ + "Download", + "Movie", + "TV", + "Music" + ], + "description": "A stack of dockers (Sonarr, Radarr and Lidarr).", + "env": [{ + "default": "1000", + "label": "PUID", + "name": "PUID" + }, + { + "default": "100", + "label": "PGID", + "name": "PGID" + }, + { + "label": "TZ", + "name": "TZ" + }, + { + "default": "7878", + "label": "Radarr port", + "name": "RADARRPORT" + }, + { + "default": "8989", + "label": "Sonarr port", + "name": "SONARRPORT" + }, + { + "default": "8686", + "label": "Lidarr port", + "name": "LIDARRPORT" + }, + { + "label": "appdata folder", + "name": "APPDATA", + "description": "location of your appdata root" + }, + { + "label": "download folder", + "name": "DOWNLOAD", + "description": "location of your download folder" + } + ], + "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/radarr.png", + "name": "Movie, TV, Music Download", + "note": "A stack of dockers (Radarr, Sonarr and Lidarr).", + "platform": "linux", + "repository": { + "stackfile": "Template/Stack/mtm_download.yml", + "url": "https://github.com/Qballjos/portainer_templates" + }, + "title": "MTM Download", + "type": 3 }