0 votes
in Docker by

What is the best way of deleting a container?

1 Answer

0 votes
by

We need to follow the following two steps for deleting a container:

- docker stop <container_id>

- docker rm <container_id>

...