0

I have a container that I want to stop, but when I do a docker stop [CONTAINER_ID] it hangs and never stops it.

I have tried the normal docker stop and docker ps -q | % { docker stop $_ }

golobitch
  • 1,466
  • 3
  • 19
  • 38
Cameron
  • 533
  • 2
  • 6
  • 14

1 Answers1

1

I have had this previously.

Stop the docker daemon, whether its in services (enterprise) or in the icon tray (normal) and restart the daemon, this should free up the resources so you can properly remove it using docker stop ID and docker rm ID

CarlMc
  • 210
  • 2
  • 11