1

On my Windows machine, I successfully initialized dapr as explained here.

But upon uninstalling it, two docker containers continue to run.

Docker container after uninstalling dapr

Am I missing something? What should I do to completely clean that up? Do I have to manually stop those two containers?

VivekDev
  • 20,868
  • 27
  • 132
  • 202

2 Answers2

2

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

jb94
  • 43
  • 5
1

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.

Jun
  • 41
  • 3