diff --git a/local/compose/build.go b/local/compose/build.go index 7c6a3461a..1429fe44b 100644 --- a/local/compose/build.go +++ b/local/compose/build.go @@ -189,6 +189,7 @@ func (s *composeService) toBuildOptions(service types.ServiceConfig, contextPath Target: service.Build.Target, Exports: []bclient.ExportEntry{{Type: "image", Attrs: map[string]string{}}}, Platforms: plats, + Labels: service.Labels, }, nil } diff --git a/local/compose/create.go b/local/compose/create.go index 4079806c8..1ff3a7ebf 100644 --- a/local/compose/create.go +++ b/local/compose/create.go @@ -289,6 +289,12 @@ func (s *composeService) getCreateOptions(ctx context.Context, p *types.Project, Resources: resources, VolumeDriver: service.VolumeDriver, VolumesFrom: service.VolumesFrom, + DNS: service.DNS, + DNSSearch: service.DNSSearch, + DNSOptions: service.DNSOpts, + ExtraHosts: service.ExtraHosts, + SecurityOpt: service.SecurityOpt, + UsernsMode: container.UsernsMode(service.UserNSMode), } networkConfig := buildDefaultNetworkConfig(service, networkMode, getContainerName(p.Name, service, number))