From 22ec0f8826736692b6233fd0126075ca8cad20cd Mon Sep 17 00:00:00 2001 From: TheH2SO4 <69685986+theh2so4@users.noreply.github.com> Date: Mon, 23 Oct 2023 11:30:01 +0200 Subject: [PATCH] [+] Template: Emby MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🆕 **New Template**: -> ℹī¸ **Emby**: A media server software that allows you to organize, stream, and access your multimedia content effortlessly, making it easy to enjoy your favorite movies, TV shows, music, and more. --- templates/compose/emby.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 templates/compose/emby.yaml diff --git a/templates/compose/emby.yaml b/templates/compose/emby.yaml new file mode 100644 index 000000000..2bb7b1538 --- /dev/null +++ b/templates/compose/emby.yaml @@ -0,0 +1,20 @@ +# documentation: https://emby.media/support/articles/Home.html +# slogan: A media server software that allows you to organize, stream, and access your multimedia content effortlessly, making it easy to enjoy your favorite movies, TV shows, music, and more. + +services: + emby: + image: lscr.io/linuxserver/emby:latest + environment: + - SERVICE_FQDN_EMBY + - PUID=1000 + - PGID=1000 + - TZ=Europe/Madrid + volumes: + - emby-config:/config + - emby-tvshows:/tvshows + - emby-movies:/movies + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:8096"] + interval: 2s + timeout: 10s + retries: 15