简介:
我已经深深的爱上了docker技术。
在日常使用中,经常看到docker hub 中有很多autobuild的镜像。基本使用是在github中上传dockerfile,过一会儿,docker hub 就可以自动生成镜像。
让我们看看这是怎么实现的。
一:注册并关联账号
1.注册github账号
https://github.com/
2.注册dockerhub账号
https://hub.docker.com/
3.关联账号
登陆docker hub
进入Settings
选择下面的 Linked Accounts & Services --> Link Github
选择Public and Private
我的自动关联了,估计你的也就是输入帐号密码。
二:创建自动构建
1.创建自动构建
选择 Create --> Create Automated Build
2.选择github目录
3.设定名字,简介
Dockerfiles,改为自己需要的名字。Descrption必填,描述信息。然后Create。
4.设定路径
就是设置Dockerfile Location。
我的路径是https://github.com/jackadam1981/Dockerfiles/tree/master/IPProxyPool
选择github目录为Dockerfiles,Dockerfiles Location为 /IPProxyPool。
然后点一下Trigger,触发。