Docker制作Base Image

Posted ghh520

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Docker制作Base Image相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

『中级篇』手动建立一个base Image(14)

『中级篇』手动建立一个base Image(14)

基于docker容器创建镜像image

基于docker容器创建镜像image

docker 制作镜像

Docker 镜像制作方法