initial commit

This commit is contained in:
2025-03-27 18:59:31 +01:00
commit 879d596740
17 changed files with 508 additions and 0 deletions

25
dashy/config.yml Normal file
View File

@ -0,0 +1,25 @@
appConfig:
theme: matrix
layout: auto
iconSize: medium
language: de
pageInfo:
title: Your Dashy
description: ''
navLinks: []
footerText: ''
sections:
- name: your.domain
items:
- title: YourDomain
icon: https://your.domain/img/logo.png
url: https://your.domain
items:
- title: Minecraft Dynmap
url: https://meinspaces.org
- name: personal links
items:
- title: Github
url: https://github.com/youruser
- title: Youtube
url: https://www.youtube.com/channel/yourchannel

22
dashy/docker-compose.yml Normal file
View File

@ -0,0 +1,22 @@
---
version: "3.8"
services:
dashy:
image: lissy93/dashy
container_name: Dashy
# Pass in your config file below, by specifying the path on your host machine
volumes:
- ./config.yml:/app/public/conf.yml
ports:
- 80:80
environment:
- NODE_ENV=production
- UID=1000
- GID=1000
restart: unless-stopped
healthcheck:
test: ['CMD', 'node', '/app/services/healthcheck']
interval: 1m30s
timeout: 10s
retries: 3
start_period: 40s