'dapr uninstall does not clean up all the containers that it created
On my Windows machine, I successfully initialized dapr as explained here.
But upon uninstalling it, two docker containers continue to run.
Am I missing something? What should I do to completely clean that up? Do I have to manually stop those two containers?
Solution 1:[1]
This is mentioned on their dapr cli github page. https://github.com/dapr/cli and is in case you use redis or anything else for other purposes.
To remove all, use: dapr uninstall --all
Solution 2:[2]
You can manually stop these 2 containers by running command docker stop the-container-id
. In this case, it would be docker stop 492fd54a93ca
, docker stop c852e328d489
. Given that the 2 running containers are the ones you want to remove, you could also use docker stop docker ps -aq
. Hope it helps.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | jb94 |
Solution 2 | Jun |