Docker:如何从Github存储库上的非主分支构建映像

是否可以从Github存储库上的非主分支构建映像?

例如,我有一个存储库//github.com/myAccount/docker-myImage,它有一个分支开发,我想用于我的图像.不幸的是,以下命令似乎只允许从主分支构建:

docker build -t myAccount/myImage git://github.com/myAccount/docker-myImage

以下是man docker build的相关文档:

Building an image using a URL
       This will clone the specified Github repository from the URL and use it as context.
       The Dockerfile at the root of the repository is used as Dockerfile. This only works
       if the Github repository is a dedicated repository.

              docker build github.com/scollier/Fedora-Dockerfiles/tree/master/apache

              Note: You can set an arbitrary Git repository via the git:// schema.

也许有一个替代方案,比如docker build -t myAccount / myImage git://github.com/myAccount/docker-myImage:development?

最佳答案
docker build -t myAccount / myImage https://github.com/myAccount/docker-myImage.git#development

有关更多选项,请参见docker build command reference.

相关文章

最近一直在开发Apworks框架的案例代码,同时也在一起修复Apw...
最近每天都在空闲时间努力编写Apworks框架的案例代码WeText。...
在《Kubernetes中分布式存储Rook-Ceph部署快速演练》文章中,...
最近在项目中有涉及到Kubernetes的分布式存储部分的内容,也...
CentOS下Docker与.netcore(一) 之 安装 CentOS下Docker与.ne...
CentOS下Docker与.netcore(一) 之 安装 CentOS下Docker与.ne...