Summaries the docker basic command below:
1) Checking the version of docker
$ docker version
2) Listing the available images in your docker
$ docker images
$ docker ps
$ docker ps -a
$ docker inspect your_process
$ docker stop your_process_id OR your process_name
$ docker rm your_process_id OR your_process_name
$ docker rmi your_images_name
$ docker pull docker_public_id_name
$ docker run --name your_name_tag your_images_name
No comments:
Post a Comment