首页 > 其他 > 详细

[Docker] Docker Client in Action

时间:2016-04-25 06:43:55      阅读:507      评论:0      收藏:0      [点我收藏+]

Pull the docker image:

docker pull hello-world

 

Show all the images:

docker images

 

Remove the image:

docker rmi <image_id>

 

Run the image:

docker run hello-world

docker run -p 80:80 kitematic/hello-world-nginx //Run kitematic/hello-world-nginx image on (-p) port (local)80:80(to nginx 80)

Once run the images, you can see the webpage the your docker site url.

 

List all the running containers:

docker ps

 

List all the containers:

docker ps -a

 

Remove the container:

docker rm <container_id>

After delete container, the images will still be left, if you want to delete the image
just do `docker rmi <iamge_id>`

 

Stop the container:

docker stop <container_id>

 

技术分享技术分享

[Docker] Docker Client in Action

原文:http://www.cnblogs.com/Answer1215/p/5429169.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!