22 lines
613 B
YAML
22 lines
613 B
YAML
# documentation: https://dashy.to/docs
|
|
# slogan:A self-hostable personal dashboard built for you. Includes status-checking, widgets, themes, icon packs, a UI editor and tons more!
|
|
# tags: dashboard, personal, self-hostable
|
|
# logo: svgs/dashy.png
|
|
# port: 8080
|
|
|
|
services:
|
|
dashy:
|
|
image: lissy93/dashy
|
|
environment:
|
|
- SERVICE_FQDN_DASHY_8080
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TIMEZONE:-UTC}
|
|
volumes:
|
|
- './dashy/conf.yml:/app/public/conf.yml'
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:8080/"]
|
|
interval: 5s
|
|
timeout: 20s
|
|
retries: 10
|