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 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 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 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