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

Docker制作Base Image

时间:2020-06-25 19:36:32      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:sdn   type   term   code   doc   ima   ext   官方   容器   

Docker制作Base Image

Base Image:基于系统的基础镜像

1、编辑Dockerfile

vi Dockerfile

2、写入一下内容

FROM ubuntu
CMD echo "hello docker"

3、编译镜像

docker build -t guhaohao/hello-world .
技术图片

4、查看编译后的镜像

docker image ls

5、运行镜像,成为一个容器

docker run guhaohao/hello-word

6、可以直接拉取官方镜像

docker pull redis

Docker制作Base Image

标签:sdn   type   term   code   doc   ima   ext   官方   容器   

原文地址:https://www.cnblogs.com/ghh520/p/13192540.html

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