mirror of
https://github.com/Dokploy/templates.git
synced 2026-03-12 01:56:43 -05:00
Emby template (#276)
* Emby template * Update blueprints/emby/template.toml * Add Emby entry to meta.json - Introduced new application entry for Emby, including details such as version, description, logo, and relevant links. - Ensured proper categorization with appropriate tags for media systems. --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
This commit is contained in:
8
.idea/.gitignore
generated
vendored
Normal file
8
.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
||||
20
blueprints/emby/docker-compose.yml
Normal file
20
blueprints/emby/docker-compose.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
version: "2.3"
|
||||
services:
|
||||
emby:
|
||||
image: emby/embyserver
|
||||
# Uncomment to enable DLNA and Wake-on-Lan
|
||||
# network_mode: host
|
||||
environment:
|
||||
- UID=1000 # The UID to run emby as (default: 2)
|
||||
- GID=100 # The GID to run emby as (default 2)
|
||||
- GIDLIST=100 # A comma-separated list of additional GIDs to run emby as (default: 2)
|
||||
volumes:
|
||||
- /emby/programdata:/config # Configuration directory
|
||||
- /emby/series:/mnt/share1 # Media directory
|
||||
- /emby/movies:/mnt/share2 # Media directory
|
||||
ports:
|
||||
- 8096 # HTTP port
|
||||
- 8920 # HTTPS port
|
||||
devices:
|
||||
- /dev/dri:/dev/dri # VAAPI/NVDEC/NVENC render nodes
|
||||
restart: on-failure
|
||||
BIN
blueprints/emby/emby.png
Normal file
BIN
blueprints/emby/emby.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 21 KiB |
12
blueprints/emby/template.toml
Normal file
12
blueprints/emby/template.toml
Normal file
@@ -0,0 +1,12 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
api_domain = "${domain}"
|
||||
|
||||
[config]
|
||||
env = []
|
||||
mounts = []
|
||||
|
||||
[[config.domains]]
|
||||
serviceName = "emby"
|
||||
port = 8096
|
||||
host = "${main_domain}"
|
||||
16
meta.json
16
meta.json
@@ -1537,6 +1537,22 @@
|
||||
"analytics"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "emby",
|
||||
"name": "Emby",
|
||||
"version": "4.9.1.17",
|
||||
"description": "Emby Server is a personal media server with apps on just about every device.",
|
||||
"logo": "emby.png",
|
||||
"links": {
|
||||
"github": "https://github.com/MediaBrowser/Emby",
|
||||
"website": "https://emby.media/",
|
||||
"docs": "https://emby.media/support/articles/Home.html"
|
||||
},
|
||||
"tags": [
|
||||
"media",
|
||||
"media system"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "erpnext",
|
||||
"name": "ERPNext",
|
||||
|
||||
Reference in New Issue
Block a user