Docker

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

docker run -it ubuntu

docker ps
docker ps -a
docker stop container_name
docker start container_name
docker rm container_name
docker images
docker rmi image_name
docker pull image_name
docker build -t image_name
docker exec -it container_name command
docker commit container_name new_image_name
docker login registry.example.com
docker push image_name
docker tag image_name new_image_name
docker network create network_name
docker volume create volume_name

You might also like