Dcoekr Commands
In this post I am providing basic commands of docker. Docker Image commands usage: search for images in terminal syntax: docker search <image_name:tag> usage: pull images to local machine from docker hub syntax: docker pull <image_name:tag> usage: list all downloaded docker images in local system syntax: docker image ls (or) docker images usage: display detailed information on one or more images syntax: docker image inspect <image_name:tag> usage: show the history of an image syntax: docker image history <image_name:tag> usage: remove all unused images from local machine syntax: docker image prune usage: push images to docker hub/registry syntax: docker push <image_name:tag> usage: do delete one or multiple docker images syntax: docker image rm -f <image_name:tag> (or) docker rmi -f <image_name:tag> Docker container commands usage: To see running containers information synta...