Split dashboard into public and admin instances with separate config-public and config-admin directories
Some checks failed
Build & Push Docker Image to Gitea Registry / build-and-push (push) Has been cancelled
Some checks failed
Build & Push Docker Image to Gitea Registry / build-and-push (push) Has been cancelled
This commit is contained in:
4
config-admin/settings.yaml
Normal file
4
config-admin/settings.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
title: MischLabs Admin
|
||||||
|
theme: dark
|
||||||
|
language: de
|
||||||
|
|
||||||
27
config-public/services.yaml
Normal file
27
config-public/services.yaml
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
- Medien:
|
||||||
|
- Drive:
|
||||||
|
icon: nextcloud.png
|
||||||
|
href: https://drive.mischlabs.de
|
||||||
|
description: Cloud-Speicher
|
||||||
|
- Movies:
|
||||||
|
icon: jellyfin.png
|
||||||
|
href: https://movies.mischlabs.de
|
||||||
|
description: Filme & Serien
|
||||||
|
- Audiobooks:
|
||||||
|
icon: audiobookshelf.png
|
||||||
|
href: https://audiobook.mischlabs.de
|
||||||
|
description: Hörbücher
|
||||||
|
- Books:
|
||||||
|
icon: calibre-web.png
|
||||||
|
href: https://books.mischlabs.de
|
||||||
|
description: Bücher & Bibliothek
|
||||||
|
|
||||||
|
- Persönlich:
|
||||||
|
- MiChess:
|
||||||
|
icon: lichess.png
|
||||||
|
href: https://michess.mischlabs.de
|
||||||
|
description: Schach spielen
|
||||||
|
- Tom:
|
||||||
|
icon: user-circle.png
|
||||||
|
href: https://tom.mischlabs.de
|
||||||
|
description: Portfolio & Fotos
|
||||||
3
config-public/settings.yaml
Normal file
3
config-public/settings.yaml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
title: MischLabs
|
||||||
|
theme: dark
|
||||||
|
language: de
|
||||||
4
config-public/widgets.yaml
Normal file
4
config-public/widgets.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
- search:
|
||||||
|
provider: duckduckgo
|
||||||
|
focus: true
|
||||||
|
target: _blank
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
title: MischLabs Dashboard
|
|
||||||
theme: dark
|
|
||||||
language: de
|
|
||||||
|
|
||||||
@@ -7,14 +7,27 @@ services:
|
|||||||
- "8085:3000"
|
- "8085:3000"
|
||||||
environment:
|
environment:
|
||||||
HOMEPAGE_ALLOWED_HOSTS: mischlabs.de,www.mischlabs.de,192.168.178.88,192.168.178.88:8085,localhost,127.0.0.1
|
HOMEPAGE_ALLOWED_HOSTS: mischlabs.de,www.mischlabs.de,192.168.178.88,192.168.178.88:8085,localhost,127.0.0.1
|
||||||
|
volumes:
|
||||||
|
- ./config-public:/app/config
|
||||||
|
- mischlabs_data:/app/data
|
||||||
|
|
||||||
|
mischlabs-admin:
|
||||||
|
image: ghcr.io/gethomepage/homepage:latest
|
||||||
|
container_name: mischlabs-admin
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "8086:3000"
|
||||||
|
environment:
|
||||||
|
HOMEPAGE_ALLOWED_HOSTS: admin.mischlabs.de,192.168.178.88,192.168.178.88:8086,localhost,127.0.0.1
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
- /volume1:/host/volume1:ro
|
- /volume1:/host/volume1:ro
|
||||||
- /volume2:/host/volume2:ro
|
- /volume2:/host/volume2:ro
|
||||||
- ./config:/app/config
|
- ./config-admin:/app/config
|
||||||
- mischlabs_data:/app/data
|
- mischlabs_admin_data:/app/data
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
mischlabs_data:
|
mischlabs_data:
|
||||||
|
mischlabs_admin_data:
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user