MauriceNino / dashdot

A simple, modern server dashboard, primarily used by smaller private servers
https://getdashdot.com/
MIT License
2.53k stars 95 forks source link

Fix missing backslash #1053

Closed ItzMiracleOwO closed 1 month ago

ItzMiracleOwO commented 4 months ago

Description Change GPU support command from

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

To

  docker container run -it \
  -p 80:3001 \
  -v /:/mnt/host:ro \
  --privileged \
  --gpus all \
  --env DASHDOT_WIDGET_LIST="os,cpu,storage,ram,network,gpu" \  # Added Backslash here
  mauricenino/dashdot:nvidia

Related Issue(s) Docker installation documentations

MauriceNino commented 1 month ago

Thank you for your contribution, and sorry for the late merge :)

github-actions[bot] commented 1 month ago

:tada: This issue has been resolved in version 5.8.4

Please check the changelog for more details.