App/moodist (#2531)

* added moodist

* added formfields, edited README.md

* edited port to 8221
This commit is contained in:
falkheiland 2024-02-25 11:29:19 +01:00 committed by GitHub
parent 33a95a46ac
commit 42b1f1e34e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 68 additions and 0 deletions

21
apps/moodist/config.json Normal file
View File

@ -0,0 +1,21 @@
{
"$schema": "../schema.json",
"name": "Moodist",
"port": 8221,
"available": true,
"exposable": true,
"id": "moodist",
"tipi_version": 1,
"version": "v1.3.1",
"categories": [
"media"
],
"description": "Ambient sounds for focus and calm.",
"short_desc": "Ambient sounds for focus and calm.",
"author": "remvze",
"source": "https://github.com/remvze/moodist",
"form_fields": [],
"supported_architectures": [
"amd64"
]
}

View File

@ -0,0 +1,38 @@
version: "3.7"
services:
moodist:
image: ghcr.io/remvze/moodist:v1.3.1
container_name: moodist
restart: unless-stopped
volumes:
- /etc/localtime:/etc/localtime:ro
ports:
- ${APP_PORT}:8080
networks:
- tipi_main_network
labels:
# Main
traefik.enable: true
traefik.http.middlewares.moodist-web-redirect.redirectscheme.scheme: https
traefik.http.services.moodist.loadbalancer.server.port: 8080
# Web
traefik.http.routers.moodist-insecure.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.moodist-insecure.entrypoints: web
traefik.http.routers.moodist-insecure.service: moodist
traefik.http.routers.moodist-insecure.middlewares: moodist-web-redirect
# Websecure
traefik.http.routers.moodist.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.moodist.entrypoints: websecure
traefik.http.routers.moodist.service: moodist
traefik.http.routers.moodist.tls.certresolver: myresolver
# Local domain
traefik.http.routers.moodist-local-insecure.rule: Host(`moodist.${LOCAL_DOMAIN}`)
traefik.http.routers.moodist-local-insecure.entrypoints: web
traefik.http.routers.moodist-local-insecure.service: moodist
traefik.http.routers.moodist-local-insecure.middlewares: moodist-web-redirect
# Local domain secure
traefik.http.routers.moodist-local.rule: Host(`moodist.${LOCAL_DOMAIN}`)
traefik.http.routers.moodist-local.entrypoints: websecure
traefik.http.routers.moodist-local.service: moodist
traefik.http.routers.moodist-local.tls: true

View File

@ -0,0 +1,9 @@
# Moodist
Ambient sounds for focus and calm.
## App Links
<https://moodist.app/>
<https://github.com/remvze/moodist>

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB