11.3.  Troubleshooting problem installations and cleaning up

Example Scenario

The Dashboard is running but you cannot stop it using docker-compose down because you inadvertantly 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 user the following command to clean up:

shell> docker [component] rm [component-id]

Check if there are no environment leftovers:

shell> env | grep DASHBOARD

See Chapter 3, Installation for more details on installation.