This commit is contained in:
myve 2024-08-10 09:07:11 +00:00
commit e650d80b1e
58 changed files with 1747 additions and 0 deletions

9
dashy/.env Normal file
View file

@ -0,0 +1,9 @@
# Environment file for docker-compose.yaml
# Generate new passwords with:
# openssl rand -hex 32
# Fill in registry
REGISTRY=
# Dashy
DASHY_PORT=

25
dashy/docker-compose.yaml Normal file
View file

@ -0,0 +1,25 @@
services:
# dashy (https://github.com/Lissy93/dashy/blob/master/docker-compose.yml)
dashy:
image: ${REGISTRY}/dashy
container_name: dashy
restart: unless-stopped
ports:
- ${DASHY_PORT:-8080}:8080
environment:
NODE_ENV: production
healthcheck:
test: ['CMD', 'node', '/app/services/healthcheck']
interval: 1m30s
timeout: 10s
retries: 3
start_period: 40s
volumes:
- ./conf.yml:/app/user-data/conf.yml
networks:
- dashy
networks:
dashy:
external: false