Docker
docker container run -it \
-p 80:3001 \
-v /:/mnt/host:ro \
--privileged \
mauricenino/dashdot
Configuration
Config options can optionally passed using the
--env
flag.
docker container run -it \
--env DASHDOT_ENABLE_CPU_TEMPS="true" \
# ...
GPU Support
GPU support is available with another image tag and a slightly different command.
docker container run -it \
-p 80:3001 \
-v /:/mnt/host:ro \
--privileged \
--gpus all \
--env DASHDOT_WIDGET_LIST="os,cpu,storage,ram,network,gpu" \
mauricenino/dashdot:nvidia