mirror of https://github.com/docker/compose.git
Merge pull request #8848 from ndeloof/DOCKER_DEFAULT_PLATFORM
add support for DOCKER_DEFAULT_PLATFORM
This commit is contained in:
commit
9d04f3ff73
|
@ -261,6 +261,13 @@ func (s *composeService) toBuildOptions(project *types.Project, service types.Se
|
||||||
}))
|
}))
|
||||||
|
|
||||||
var plats []specs.Platform
|
var plats []specs.Platform
|
||||||
|
if platform, ok := project.Environment["DOCKER_DEFAULT_PLATFORM"]; ok {
|
||||||
|
p, err := platforms.Parse(platform)
|
||||||
|
if err != nil {
|
||||||
|
return build.Options{}, err
|
||||||
|
}
|
||||||
|
plats = append(plats, p)
|
||||||
|
}
|
||||||
if service.Platform != "" {
|
if service.Platform != "" {
|
||||||
p, err := platforms.Parse(service.Platform)
|
p, err := platforms.Parse(service.Platform)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue