27 lines
688 B
YAML
27 lines
688 B
YAML
services:
|
|
# Dashy - Application Dashboard
|
|
dashy:
|
|
container_name: dashy
|
|
image: lissy93/dashy
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
restart: unless-stopped
|
|
profiles: ["apps", "all"]
|
|
networks:
|
|
- default
|
|
ports:
|
|
- $DASHY_PORT:8080
|
|
healthcheck:
|
|
test: ['CMD', 'node', '/app/services/healthcheck']
|
|
interval: 1m30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
volumes:
|
|
- $DOCKERDIR/appdata/dashy/conf.yml:/app/public/conf.yml
|
|
- $DOCKERDIR/appdata/dashy/item-icons:/app/public/item-icons
|
|
environment:
|
|
- NODE_ENV=production
|
|
- UID=$PUID
|
|
- GID=$PGID
|
|
# DOCKER-LABELS-PLACEHOLDER |