Merge pull request #57 from SelfhostedPro/adding_apps

Adding apps
This commit is contained in:
SelfhostedPro 2020-06-08 12:52:09 -07:00 committed by GitHub
commit 92f321111d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 55 additions and 3 deletions

BIN
Images/emby.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -51,6 +51,57 @@
}
]
},
{
"type": 1,
"title": "Emby",
"name": "Emby",
"description": "Emby organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/emby.png",
"image": "linuxserver/emby:latest",
"categories": [
"Video",
"Music",
"Photos"
],
"platform": "linux",
"restart_policy": "unless-stopped",
"ports": [
"8096:8096/tcp",
"8920:8920/tcp"
],
"volumes": [
{
"container": "/config",
"bind": "/portainer/Files/AppData/Config/Emby"
},
{
"container": "/data/tvshows",
"bind": "/portainer/TV"
},
{
"container": "/data/movies",
"bind": "/portainer/Movies"
}
],
"env": [
{
"name": "PUID",
"label": "PUID",
"default": "1000",
"preset": true
},
{
"name": "PGID",
"label": "PGID",
"default": "100",
"preset": true
},
{
"name": "TZ",
"label": "TZ"
}
]
},
{
"type": 1,
"title": "Jellyfin",
@ -131,6 +182,7 @@
"title": "Pi-Hole",
"name": "Pi-Hole",
"description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole.",
"note": "When the installation is complete, navigate to your.ip.goes.here:1010/admin.",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/pihole.png",
"image": "pihole/pihole:latest",
"categories": [
@ -141,10 +193,10 @@
"restart_policy": "unless-stopped",
"ports": [
"53:53/tcp",
"81:53/udp",
"53:53/udp",
"67:67/udp",
"80:80/tcp",
"443:443/tcp"
"1010:80/tcp",
"4443:443/tcp"
],
"volumes": [
{