Docker Operations Log (Part 2)
·348 words·2 mins
Continuing from Docker Operations Log (Part 1)
Basic Docker Usage # Deleting a Container # Remember to stop the container using stop before deleting it.
docker rm CONTAINER_NAME Or
docker rm CONTAINER_ID After deletion, you can use
docker ps -a to confirm if the container has disappeared.