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

前端之家收集整理的这篇文章主要介绍了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.

原文链接:https://www.f2er.com/docker/436276.html

猜你在找的Docker相关文章