App/moodist (#2531)
* added moodist * added formfields, edited README.md * edited port to 8221
This commit is contained in:
parent
33a95a46ac
commit
42b1f1e34e
21
apps/moodist/config.json
Normal file
21
apps/moodist/config.json
Normal 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"
|
||||
]
|
||||
}
|
38
apps/moodist/docker-compose.yml
Normal file
38
apps/moodist/docker-compose.yml
Normal 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
|
9
apps/moodist/metadata/description.md
Normal file
9
apps/moodist/metadata/description.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
# Moodist
|
||||
|
||||
Ambient sounds for focus and calm.
|
||||
|
||||
## App Links
|
||||
|
||||
<https://moodist.app/>
|
||||
|
||||
<https://github.com/remvze/moodist>
|
BIN
apps/moodist/metadata/logo.jpg
Normal file
BIN
apps/moodist/metadata/logo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
Loading…
Reference in New Issue
Block a user