Erfahre in dieser Schritt-für-Schritt Anleitung, wie du in Docker einen Container entfernen kannst. Dazu gibst du einfach den Befehl docker stop
und anschließend docker rm
ein, gefolgt von der Container-ID oder dem Namen des Containers.
Follow these steps:
docker ps
to view the currently running containers.docker stop
followed by the container ID or name to stop the container.docker rm
followed by the container ID or name to remove the container.Example:
docker stop my_container
docker rm my_container