Skip to content

Commit

Permalink
Merge pull request #35 from Serph91P/master
Browse files Browse the repository at this point in the history
feat(app): added emby
  • Loading branch information
azukaar authored Sep 23, 2023
2 parents f47dfb4 + 6604cec commit 0c5e27f
Show file tree
Hide file tree
Showing 7 changed files with 83 additions and 0 deletions.
74 changes: 74 additions & 0 deletions servapps/Emby/cosmos-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{
"cosmos-installer": {
"form": [
{
"name": "moviePath",
"label": "What is the path to your movies? (leave empty to not mount anything)",
"initialValue": "{DefaultDataPath}/movies",
"type": "text"
},
{
"name": "seriePath",
"label": "What is the path to your series? (leave empty to not mount anything)",
"initialValue": "{DefaultDataPath}/series",
"type": "text"
}
]
},
"minVersion": "0.7.6",
"services": {
"{ServiceName}": {
"image": "lscr.io/linuxserver/emby:latest",
"container_name": "{ServiceName}",
"restart": "unless-stopped",
"UID": 1000,
"GID": 1000,
"environment": [
"PUID=1000",
"PGID=1000",
"TZ=auto"
],
"labels": {
"cosmos-force-network-secured": "true",
"cosmos-auto-update": "true",
"cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Emby/icon.png"
},
"volumes": [
{
"source": "{ServiceName}-config",
"target": "/config",
"type": "volume"
}
{if Context.moviePath}
, {
"source": "{Context.moviePath}",
"target": "/data/movies",
"type": "bind"
}
{/if}
{if Context.seriePath}
, {
"source": "{Context.seriePath}",
"target": "/data/tvshows",
"type": "bind"
}
{/if}
],
"routes": [
{
"name": "{ServiceName}",
"description": "Expose {ServiceName} to the web",
"useHost": true,
"target": "http://{ServiceName}:8096",
"mode": "SERVAPP",
"Timeout": 14400000,
"ThrottlePerMinute": 12000,
"BlockCommonBots": true,
"SmartShield": {
"Enabled": true
}
}
]
}
}
}
9 changes: 9 additions & 0 deletions servapps/Emby/description.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "Emby",
"description": "Emby(https://emby.media/) 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.",
"longDescription": "<p>Emby is an open-source media system that gives you the power to control the management and streaming of your media content. It offers an alternative to proprietary systems like Plex, empowering users to deliver media content from a dedicated server to various end-user devices through a range of apps.</p><p>Key features of Emby include the ability to stream movies, TV shows, music, photos, videos, audiobooks, and podcasts. It also supports various technologies and platforms such as DLNA, Chromecast, Android, iOS, Roku, FireTV, SmartTV, Web browser and Kodi. Emby essentially functions as a comprehensive media browser, server, streaming system, player, center, manager, organizer, and library. In addition to these, it also facilitates media sharing, transcoding, and casting, offering a robust solution for your media needs.</p>",
"tags": ["media", "server", "streaming", "movies", "tv", "music", "photos", "videos", "audiobooks", "podcasts", "dlna", "chromecast", "android", "ios", "roku", "firetv", "smarttv", "web", "browser", "kodi", "emby", "plex", "media browser", "media server", "media streaming", "media player", "media center", "media management", "media organizer", "media collection", "media library", "media manager", "media sharing", "media transcoding", "media casting", "media casting", "media casting"],
"repository": "https://github.com/linuxserver/docker-emby",
"image": "https://hub.docker.com/r/linuxserver/emby",
"supported_architectures": ["amd64", "arm64"]
}
Binary file added servapps/Emby/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/Emby/screenshots/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/Emby/screenshots/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/Emby/screenshots/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/Emby/screenshots/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0c5e27f

Please sign in to comment.