Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 286 Bytes

File metadata and controls

17 lines (16 loc) · 286 Bytes

Getting the Id and other info from running containers:

docker ps

Stopping a container:

docker stop <container-id>

Removing a container:

docker rm <countainer-id>

Stopping and removing:

docker rm -f <countainer-id>