Docker

Docker is a platform for developing, shipping, and running applications in containers. Includes Docker Compose for multi-container apps.


GENERAL
docker --version Show Docker version
Containers
docker ps List running containers
docker run -it ubuntu bash Interactive container
docker stop container_id Stop container
docker rm container_id Remove container
Images
docker images List images
docker build -t myimage . Build image
docker rmi image_id Remove image