Cameron
Cameron

Reputation: 633

Docker container hanging on docker stop (Windows Container)

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 $_ }

Upvotes: 0

Views: 1534

Answers (1)

CarlMc
CarlMc

Reputation: 210

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

Upvotes: 1

Related Questions