Docker-Compose
version: '3.5'
services:
dash:
image: mauricenino/dashdot:latest
restart: unless-stopped
privileged: true
ports:
- '80:3001'
volumes:
- /:/mnt/host:ro
Configuration
Config options can optionally set, by using the environment field.
services:
dash:
environment:
DASHDOT_ENABLE_CPU_TEMPS: 'true'
# ...