From 5dd3952230c04a5137f25959a196d894e621e7ab Mon Sep 17 00:00:00 2001 From: TheH2SO4 <69685986+theh2so4@users.noreply.github.com> Date: Mon, 23 Oct 2023 12:41:48 +0200 Subject: [PATCH] [+] Template: EmbyStat MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🆕 **New Template**: -> â„šī¸ **EmbyStat**: EmyStat is an open-source, self-hosted web analytics tool, designed to provide insight into website traffic and user behavior, of your local Emby deployement, all within your control. --- templates/compose/embystat.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 templates/compose/embystat.yaml diff --git a/templates/compose/embystat.yaml b/templates/compose/embystat.yaml new file mode 100644 index 000000000..ae0b20eea --- /dev/null +++ b/templates/compose/embystat.yaml @@ -0,0 +1,18 @@ +# documentation: https://github.com/mregni/EmbyStat/wiki/docker +# slogan: EmyStat is an open-source, self-hosted web analytics tool, designed to provide insight into website traffic and user behavior, of your local Emby deployement, all within your control. + +services: + embystat: + image: lscr.io/linuxserver/embystat:latest + environment: + - SERVICE_FQDN_EMBYSTAT + - PUID=1000 + - PGID=1000 + - TZ=Europe/Madrid + volumes: + - embystat-config:/config + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:6555"] + interval: 2s + timeout: 10s + retries: 15