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 1/6] [+] 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 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 2/6] [+] 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 From a6c35944485414463bb7ef744a0ed402111beb68 Mon Sep 17 00:00:00 2001 From: TheH2SO4 <69685986+theh2so4@users.noreply.github.com> Date: Mon, 23 Oct 2023 12:48:13 +0200 Subject: [PATCH 3/6] [+] Template: Grocy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🆕 **New Template**: -> â„šī¸ **Grocy**: Grocy is a self-hosted, web-based household management and grocery list application, designed to simplify your household chores and grocery shopping. --- templates/compose/grocy.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 templates/compose/grocy.yaml diff --git a/templates/compose/grocy.yaml b/templates/compose/grocy.yaml new file mode 100644 index 000000000..3c980efb1 --- /dev/null +++ b/templates/compose/grocy.yaml @@ -0,0 +1,18 @@ +# documentation: https://github.com/grocy/grocy +# slogan: Grocy is a self-hosted, web-based household management and grocery list application, designed to simplify your household chores and grocery shopping. + +services: + grocy: + image: lscr.io/linuxserver/grocy:latest + environment: + - SERVICE_FQDN_GROCY + - PUID=1000 + - PGID=1000 + - TZ=Europe/Madrid + volumes: + - grocy-config:/config + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:80"] + interval: 2s + timeout: 10s + retries: 15 From b5506f006bc56abd98965a0560f1c33a8fd2fda4 Mon Sep 17 00:00:00 2001 From: TheH2SO4 <69685986+theh2so4@users.noreply.github.com> Date: Mon, 23 Oct 2023 13:05:22 +0200 Subject: [PATCH 4/6] [+] Template: Dashboard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🆕 **New Template**: -> â„šī¸ **Dashboard**: A dashboard. Inspired by SUI, it offers simple customization through JSON-files and a handy search bar to help you browse the internet more efficiently. --- templates/compose/dashboard.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 templates/compose/dashboard.yaml diff --git a/templates/compose/dashboard.yaml b/templates/compose/dashboard.yaml new file mode 100644 index 000000000..eeca63a5b --- /dev/null +++ b/templates/compose/dashboard.yaml @@ -0,0 +1,15 @@ +# documentation: https://github.com/phntxx/dashboard/wiki/Installation#installation-using-docker +# slogan: A dashboard. Inspired by SUI, it offers simple customization through JSON-files and a handy search bar to help you browse the internet more efficiently. + +services: + dashboard: + image: phntxx/dashboard:latest + environment: + - SERVICE_FQDN_DASHBOARD + volumes: + - dashboard-data:/app/data + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:8080"] + interval: 2s + timeout: 10s + retries: 15 From b09a9f871ed151336451904a98851184d0a11a09 Mon Sep 17 00:00:00 2001 From: TheH2SO4 <69685986+theh2so4@users.noreply.github.com> Date: Mon, 23 Oct 2023 13:12:50 +0200 Subject: [PATCH 5/6] [+] Template: Fenrus MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🆕 **New Template**: -> â„šī¸ **Fenrus**: A personal home page for quick access to all your personal apps/sites. --- templates/compose/fenrus.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 templates/compose/fenrus.yaml diff --git a/templates/compose/fenrus.yaml b/templates/compose/fenrus.yaml new file mode 100644 index 000000000..6e469b583 --- /dev/null +++ b/templates/compose/fenrus.yaml @@ -0,0 +1,16 @@ +# documentation: https://github.com/revenz/fenrus +# slogan: A personal home page for quick access to all your personal apps/sites. + +services: + fenrus: + image: revenz/fenrus:latest + environment: + - SERVICE_FQDN_FENRUS + - TZ=Europe/Madrid + volumes: + - fenrus-data:/app/data + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:3000"] + interval: 2s + timeout: 10s + retries: 15 From 6c5a1c317af8685e9a0d809d595d3ef89ab03159 Mon Sep 17 00:00:00 2001 From: TheH2SO4 <69685986+theh2so4@users.noreply.github.com> Date: Mon, 23 Oct 2023 13:14:43 +0200 Subject: [PATCH 6/6] [!] Mistake --- templates/compose/fenrus.yaml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 templates/compose/fenrus.yaml diff --git a/templates/compose/fenrus.yaml b/templates/compose/fenrus.yaml deleted file mode 100644 index 6e469b583..000000000 --- a/templates/compose/fenrus.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# documentation: https://github.com/revenz/fenrus -# slogan: A personal home page for quick access to all your personal apps/sites. - -services: - fenrus: - image: revenz/fenrus:latest - environment: - - SERVICE_FQDN_FENRUS - - TZ=Europe/Madrid - volumes: - - fenrus-data:/app/data - healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:3000"] - interval: 2s - timeout: 10s - retries: 15