Docker-compose 用于具有具体分支的 git-repository

Docker-compose 用于具有具体分支的 git-repository

我有一个任务,使用 docker-compose 从 git-repository 构建容器。例如:

version: '2.1'

services:

project:
  image: https://github.com/my_project.git
  container_name: my_project

并且图像不仅从主分支上传,而且从任何具体分支上传。

我有什么方法可以在 docker-compose 中指定自定义 git-branch 吗?

相关内容