Browse Source

Merge pull request #8848 from ndeloof/DOCKER_DEFAULT_PLATFORM

add support for DOCKER_DEFAULT_PLATFORM
Ulysses Souza 4 years ago
parent
commit
9d04f3ff73
1 changed files with 7 additions and 0 deletions
  1. 7 0
      pkg/compose/build.go

+ 7 - 0
pkg/compose/build.go

@@ -261,6 +261,13 @@ func (s *composeService) toBuildOptions(project *types.Project, service types.Se
 	}))
 
 	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 != "" {
 		p, err := platforms.Parse(service.Platform)
 		if err != nil {