From a7e1a565f13d88a58f9b225c48ea0e39220b9062 Mon Sep 17 00:00:00 2001 From: Gbanyan Date: Sun, 5 Feb 2023 22:44:18 +0800 Subject: [PATCH] Upload emby --- emby/docker-compose.yml | 16 ++++++++++++++++ emby/readme.md | 7 +++++++ 2 files changed, 23 insertions(+) create mode 100644 emby/docker-compose.yml create mode 100644 emby/readme.md diff --git a/emby/docker-compose.yml b/emby/docker-compose.yml new file mode 100644 index 0000000..4b1345d --- /dev/null +++ b/emby/docker-compose.yml @@ -0,0 +1,16 @@ +version: "2.3" +services: + emby: + image: emby/embyserver + container_name: embyserver + network_mode: host # Enable DLNA and Wake-on-Lan + environment: + - UID=0 # The UID to run emby + - GID=0 # The GID to run emby + - GIDLIST=0 # A comma-separated list of additional GIDs to run emby as (default: 2) + volumes: + - ./config:/config # Configuration directory + - /mnt/xxx:/mnt/share1 # Media directory + devices: + - /dev/dri/renderD128:/dev/dri/renderD128 # VAAPI/NVDEC/NVENC render nodes + restart: unless-stopped \ No newline at end of file diff --git a/emby/readme.md b/emby/readme.md new file mode 100644 index 0000000..175a541 --- /dev/null +++ b/emby/readme.md @@ -0,0 +1,7 @@ +# Emby Media Center + +Sincerely, the stability is better than Jellyfin, but it cost + +Build to test the J4125 iGPU, but current no need + +The key point it to mount the graphic device into container. \ No newline at end of file