initial commit
This commit is contained in:
25
dashy/config.yml
Normal file
25
dashy/config.yml
Normal 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
22
dashy/docker-compose.yml
Normal 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
|
Reference in New Issue
Block a user