Docker Hub工作流程-Docker for Web Developers(6)

时间:2021-07-18 14:28:29

在Github上创建项目仓库

和创建其他Github项目一样,在Github创建一个仓库,然后在仓库里面增加一个dockerfile,然后提交并推送到Github上。

我已经创建的仓库地址:https://github.com/liminjun/simple-dockerfile

Dockerfile内容如下:

#FROM - Image to start building on.
FROM ubuntu:14.04 #MAINTAINER - Identifies the maintainer of the dockerfile.
MAINTAINER liminjun2007@gmail.com #RUN - Runs a command in the container
RUN echo "Hello World" > /root/hello_world.txt #CMD - Identifies the command that should be used by default when running the image as a container.
CMD ["cat", "/root/hello_world.txt"]

在Docker Hub上构建工作流

步骤1:注册Dockerhub并登录。

步骤2:基于Github仓库创建自动化构建

Docker Hub工作流程-Docker for Web Developers(6)

选择Github

Docker Hub工作流程-Docker for Web Developers(6)

步骤3:查看Build Settings

Docker Hub工作流程-Docker for Web Developers(6)

步骤4:查看Build Details

Docker Hub工作流程-Docker for Web Developers(6)

构建和迭代我们的项目

本地修改Dockerfile文件,提交并推动到Github上。

验证上述发生的变化。

获取镜像,并运行,查看内容是否变化。

docker pull bage88/simple-dockerfile

运行Docker镜像

docker run

Docker Hub工作流程-Docker for Web Developers(6)

因为Docker Hub访问速度问题,而且企业内部开发的代码都需要打包成私有的镜像。所以Docker Hub适合开源的小型项目。

对于企业内部来说,可以使用国内云计算厂商提供的镜像服务,也可以在企业内部搭建。