From 00ba6ad701a9386f470db9640dc5bea9b4843159 Mon Sep 17 00:00:00 2001 From: TheThomaas Date: Mon, 10 Jun 2024 12:32:02 +0200 Subject: [PATCH] Create config files for mafl dashboard --- mafl/config.yml | 60 +++++++++++++++++++++++++++++++++++++++++ mafl/docker-compose.yml | 9 +++++++ 2 files changed, 69 insertions(+) create mode 100644 mafl/config.yml create mode 100644 mafl/docker-compose.yml diff --git a/mafl/config.yml b/mafl/config.yml new file mode 100644 index 0000000..6617013 --- /dev/null +++ b/mafl/config.yml @@ -0,0 +1,60 @@ +title: My Home Page +services: + Home: + - title: Home Assistant + description: Home automation system + link: 'https://home-assistant.local.thethomaas.net/' + icon: + name: simple-icons:homeassistant + wrap: true + color: '#3dbcf3' + - title: Jellyfin + description: Media server + link: 'https://jellyfin.local.thethomaas.net/' + icon: + # name: simple-icons:jellyfin + url : https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/icon-transparent.svg + wrap: true + color: '#00A4DC' + - title: Forgejo + description: Ad blocking service + link: 'https://git.thethomaas.net/' + icon: + # name: simple-icons:forgejo + url: https://codeberg.org/forgejo/governance/raw/branch/main/branding/logo/forgejo.svg + wrap: true + color: '#68bc71' + + Cloud: + - title: Traefik + description: Cloud edge router + link: '#' + icon: + name: devicon:traefikproxy + wrap: true + - title: Portainer + description: Docker container management + link: '#' + icon: + name: devicon:portainer + wrap: true + - title: Grafana + description: Server monitoring dashboards + link: '#' + icon: + name: logos:grafana + wrap: true + + Devices: + - title: Router + description: Keenetic Peak + link: '#' + icon: + name: bi:router-fill + wrap: true + - title: NAS + description: Network storage + link: '#' + icon: + name: mdi:nas + wrap: true \ No newline at end of file diff --git a/mafl/docker-compose.yml b/mafl/docker-compose.yml new file mode 100644 index 0000000..f24f14a --- /dev/null +++ b/mafl/docker-compose.yml @@ -0,0 +1,9 @@ +services: + mafl: + image: hywax/mafl + container_name: mafl + volumes: + - $APPDATA/mafl/config.yml:/app/data/config.yml + ports: + - 3000:3000 + restart: unless-stopped \ No newline at end of file