Dashed is selfhosted dashboard for your homelab. It's designed to be dead simple to use and setup, while still offering a admin interface to edit the dashboard.
See how to use it in our wiki
To run using docker, run the following command :
docker run -d \
-p 3000:3000 \
-v ./db_data:/app/db \
--name=dashboard \
ghcr.io/zareix/dashed:latest
or with docker-compose :
services:
app:
image: ghcr.io/zareix/dashed:latest
container_name: dashboard
ports:
- 3000:3000
volumes:
- ./db_data:/app/db
db/
: this folder will contain the database (a sqlite file)