I have a container open attached to a terminal, but ctrl+C
and crtl+D
are not working to stop it. Ergo, I opened another terminal and tried
docker stop CONTAINER_ID
where CONTAINER_ID
is the ID of the container that is hung. This did not work, and hung that terminal. So I did a little internet research which led me to try
docker kill CONTAINER_ID
in another terminal. This also hung. So I searched a little more and found
docker rm -fv CONTAINER_ID
This, unfortunately, just hung in a fourth terminal. Is there a way to shut it down through docker that I'm missing, or do I need to start kill -9
ing the processes with "docker" in their description?
I'm running Docker version 17.03.0-ce, build 60ccb22 on OSX.