Skip to main content

Installing Dashy

Great landing page to access your self-hosted applications:

https://github.com/Lissy93/dashy 

Docker compose file/stack for portainer:

---
version: "3.8"
services:
dashy:
container_name: Dashy

# Pull latest image from DockerHub
image: lissy93/dashy

# Set port that web service will be served on. Keep container port as 80
ports:
- 4000:80

# Set any environmental variables
environment:
- NODE_ENV=production

# Specify restart policy
restart: unless-stopped

# Configure healthchecks
healthcheck:
test: ['CMD', 'node', '/app/services/healthcheck']
interval: 1m30s
timeout: 10s
retries: 3
start_period: 40s

You tube video of install of Dashy