mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
* 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>
20 lines
681 B
YAML
20 lines
681 B
YAML
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 |