Create a personal, self-hosted dashboard for all your applications and services. Designed for homelab enthusiasts, this open-source and privacy-respecting tool gives you a single, organized view of your digital world. It is highly customizable, allowing you to tailor every aspect of the interface to your exact preferences, from themes and icons to layouts and custom CSS.
Key features include:
Getting started is simple, especially with the provided Docker image for quick deployment.
services:
dashy:
image: lissy93/dashy:latest
container_name: dashy
ports:
- "4000:80"
volumes:
- ./data/conf.yml:/app/public/conf.yml
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# Dashy does not require any sensitive environment variables for a basic deployment.
# If you configure OIDC authentication or external integrations later, add those secrets here.Auto-fetched about 22 hours ago
Auto-fetched about 22 hours ago