Troubleshooting problem installations and cleaning up
Example Scenario
The Dashboard is running but you cannot stop it using docker compose down because you inadvertently removed the original installation
directory.
In this scenario you will need to clean up and re-install.
Is everything removed from a docker?
shell> docker image ls | grep dashboard
shell> docker container ls -a | grep dashboard
shell> docker volume ls | grep dashboard
shell> docker network ls | grep dashboard
Depending upon the outputs from above, you can then use the following command to clean up:
shell> docker [component] rm [component-id]
Check if there are no environment leftovers:
shell> env | grep DASHBOARD
See "Installation" for more details on installation.