Basics of Docker Image
Basic Docker Image Commands
Pull the docker image from the online resource
docker pull <docker-image>
List all Docker images in the machine
docker ps -a
Remove Docker from the machine
docker rm --force <docker-image>
Stop the docker image in the machine
docker container stop <docker-image>
Start the docker image in the machine
docker container start <docker-image>
Remove all docker images from the machine
docker rm -f $(docker ps -a -q)
Comments
Post a Comment