码迷,mamicode.com
首页 > 其他好文 > 详细

docker学习总结四

时间:2018-12-06 23:20:59      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:export   守护   stop   导出   star   docke   top   art   creat   

1. 创建容器

$ docker create -it ubuntu:latest
2. 启动容器
$ docker start 容器ID
3. 新建并启动容器
$ docker run -it ubuntu:16.04 /bin/bash
4. 守护态运行
$ docker run -d ubuntu /bin/sh -c "while true; do echo hello world; sleep 1; done"
5.停止容器
$ docker stop 容器id
6. 进入容器
$ docker exec -it 容器id /bin/bash
7. 删除容器
删除已经终止的容器
$ docker rm 容器id

删除正在运行的容器
$ docker run -d ubuntu:16.04 /bin/sh -c "while true; do echo hello world; sleep 1; done"
8. 导出容器
不管运行与否都可导出
$ docker export -o test_for_run.tar 容器id

$ docker export 容器id >test_for_stop.tar
9. 导入容器
$ docker import test_for_run.tar - test/ubuntu:dao.1

docker学习总结四

标签:export   守护   stop   导出   star   docke   top   art   creat   

原文地址:http://blog.51cto.com/13670314/2327290

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!