Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

Docker deletes the container


May 22, 2021 Docker From entry to practice



You docker rm to remove a container that is in a terminated state. For example

$sudo docker rm  trusting_newton
trusting_newton

If you want to delete a running container, you can add -f parameter. Docker sends SIGKILL to the container.