create rr stack and template

This commit is contained in:
Qballjos 2021-02-26 10:11:11 +01:00
parent abd0dd7435
commit 8f6d6e533b
2 changed files with 101 additions and 2 deletions

42
Template/Stack/rr_mtm.yml Normal file
View File

@ -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"

View File

@ -174,7 +174,7 @@
} }
], ],
"logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/openvpn-as-icon.png", "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.", "note": "A stack of dockers (qBittorent, NZBget, Jackett, NZBhydra2) to use with VPN service to shield your privacy.",
"platform": "linux", "platform": "linux",
"repository": { "repository": {
@ -183,5 +183,62 @@
}, },
"title": "VPN Download", "title": "VPN Download",
"type": 3 "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
} }