| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105 | 
							- /*
 
-    Copyright 2020 Docker Compose CLI authors
 
-    Licensed under the Apache License, Version 2.0 (the "License");
 
-    you may not use this file except in compliance with the License.
 
-    You may obtain a copy of the License at
 
-        http://www.apache.org/licenses/LICENSE-2.0
 
-    Unless required by applicable law or agreed to in writing, software
 
-    distributed under the License is distributed on an "AS IS" BASIS,
 
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
-    See the License for the specific language governing permissions and
 
-    limitations under the License.
 
- */
 
- package compose
 
- import (
 
- 	"bytes"
 
- 	"context"
 
- 	"encoding/json"
 
- 	"fmt"
 
- 	"io/ioutil"
 
- 	"path"
 
- 	"path/filepath"
 
- 	"strconv"
 
- 	"strings"
 
- 	"github.com/compose-spec/compose-go/types"
 
- 	moby "github.com/docker/docker/api/types"
 
- 	"github.com/docker/docker/api/types/blkiodev"
 
- 	"github.com/docker/docker/api/types/container"
 
- 	"github.com/docker/docker/api/types/mount"
 
- 	"github.com/docker/docker/api/types/network"
 
- 	"github.com/docker/docker/api/types/strslice"
 
- 	volume_api "github.com/docker/docker/api/types/volume"
 
- 	"github.com/docker/docker/errdefs"
 
- 	"github.com/docker/go-connections/nat"
 
- 	"github.com/docker/go-units"
 
- 	"github.com/pkg/errors"
 
- 	"github.com/sirupsen/logrus"
 
- 	"github.com/docker/compose/v2/pkg/api"
 
- 	"github.com/docker/compose/v2/pkg/progress"
 
- 	"github.com/docker/compose/v2/pkg/utils"
 
- )
 
- func (s *composeService) Create(ctx context.Context, project *types.Project, options api.CreateOptions) error {
 
- 	return progress.Run(ctx, func(ctx context.Context) error {
 
- 		return s.create(ctx, project, options)
 
- 	})
 
- }
 
- func (s *composeService) create(ctx context.Context, project *types.Project, options api.CreateOptions) error {
 
- 	if len(options.Services) == 0 {
 
- 		options.Services = project.ServiceNames()
 
- 	}
 
- 	var observedState Containers
 
- 	observedState, err := s.getContainers(ctx, project.Name, oneOffInclude, true)
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	err = s.ensureImagesExists(ctx, project, options.QuietPull)
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	prepareNetworks(project)
 
- 	err = prepareVolumes(project)
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	if err := s.ensureNetworks(ctx, project.Networks); err != nil {
 
- 		return err
 
- 	}
 
- 	if err := s.ensureProjectVolumes(ctx, project); err != nil {
 
- 		return err
 
- 	}
 
- 	allServices := project.AllServices()
 
- 	allServiceNames := []string{}
 
- 	for _, service := range allServices {
 
- 		allServiceNames = append(allServiceNames, service.Name)
 
- 	}
 
- 	orphans := observedState.filter(isNotService(allServiceNames...))
 
- 	if len(orphans) > 0 && !options.IgnoreOrphans {
 
- 		if options.RemoveOrphans {
 
- 			w := progress.ContextWriter(ctx)
 
- 			err := s.removeContainers(ctx, w, orphans, nil, false)
 
- 			if err != nil {
 
- 				return err
 
- 			}
 
- 		} else {
 
- 			logrus.Warnf("Found orphan containers (%s) for this project. If "+
 
- 				"you removed or renamed this service in your compose "+
 
- 				"file, you can run this command with the "+
 
- 				"--remove-orphans flag to clean it up.", orphans.names())
 
- 		}
 
- 	}
 
- 	err = prepareServicesDependsOn(project)
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	return newConvergence(options.Services, observedState, s).apply(ctx, project, options)
 
- }
 
- func prepareVolumes(p *types.Project) error {
 
- 	for i := range p.Services {
 
- 		volumesFrom, dependServices, err := getVolumesFrom(p, p.Services[i].VolumesFrom)
 
- 		if err != nil {
 
- 			return err
 
- 		}
 
- 		p.Services[i].VolumesFrom = volumesFrom
 
- 		if len(dependServices) > 0 {
 
- 			if p.Services[i].DependsOn == nil {
 
- 				p.Services[i].DependsOn = make(types.DependsOnConfig, len(dependServices))
 
- 			}
 
- 			for _, service := range p.Services {
 
- 				if utils.StringContains(dependServices, service.Name) {
 
- 					p.Services[i].DependsOn[service.Name] = types.ServiceDependency{
 
- 						Condition: types.ServiceConditionStarted,
 
- 					}
 
- 				}
 
- 			}
 
- 		}
 
- 	}
 
- 	return nil
 
- }
 
- func prepareNetworks(project *types.Project) {
 
- 	for k, network := range project.Networks {
 
- 		network.Labels = network.Labels.Add(api.NetworkLabel, k)
 
- 		network.Labels = network.Labels.Add(api.ProjectLabel, project.Name)
 
- 		network.Labels = network.Labels.Add(api.VersionLabel, api.ComposeVersion)
 
- 		project.Networks[k] = network
 
- 	}
 
- }
 
- func prepareServicesDependsOn(p *types.Project) error {
 
- 	for i, service := range p.Services {
 
- 		var dependencies []string
 
- 		networkDependency := getDependentServiceFromMode(service.NetworkMode)
 
- 		if networkDependency != "" {
 
- 			dependencies = append(dependencies, networkDependency)
 
- 		}
 
- 		ipcDependency := getDependentServiceFromMode(service.Ipc)
 
- 		if ipcDependency != "" {
 
- 			dependencies = append(dependencies, ipcDependency)
 
- 		}
 
- 		pidDependency := getDependentServiceFromMode(service.Pid)
 
- 		if pidDependency != "" {
 
- 			dependencies = append(dependencies, pidDependency)
 
- 		}
 
- 		for _, vol := range service.VolumesFrom {
 
- 			spec := strings.Split(vol, ":")
 
- 			if len(spec) == 0 {
 
- 				continue
 
- 			}
 
- 			if spec[0] == "container" {
 
- 				continue
 
- 			}
 
- 			dependencies = append(dependencies, spec[0])
 
- 		}
 
- 		if len(dependencies) == 0 {
 
- 			continue
 
- 		}
 
- 		if service.DependsOn == nil {
 
- 			service.DependsOn = make(types.DependsOnConfig)
 
- 		}
 
- 		deps, err := p.GetServices(dependencies...)
 
- 		if err != nil {
 
- 			return err
 
- 		}
 
- 		for _, d := range deps {
 
- 			if _, ok := service.DependsOn[d.Name]; !ok {
 
- 				service.DependsOn[d.Name] = types.ServiceDependency{
 
- 					Condition: types.ServiceConditionStarted,
 
- 				}
 
- 			}
 
- 		}
 
- 		p.Services[i] = service
 
- 	}
 
- 	return nil
 
- }
 
- func (s *composeService) ensureNetworks(ctx context.Context, networks types.Networks) error {
 
- 	for _, network := range networks {
 
- 		err := s.ensureNetwork(ctx, network)
 
- 		if err != nil {
 
- 			return err
 
- 		}
 
- 	}
 
- 	return nil
 
- }
 
- func (s *composeService) ensureProjectVolumes(ctx context.Context, project *types.Project) error {
 
- 	for k, volume := range project.Volumes {
 
- 		volume.Labels = volume.Labels.Add(api.VolumeLabel, k)
 
- 		volume.Labels = volume.Labels.Add(api.ProjectLabel, project.Name)
 
- 		volume.Labels = volume.Labels.Add(api.VersionLabel, api.ComposeVersion)
 
- 		err := s.ensureVolume(ctx, volume)
 
- 		if err != nil {
 
- 			return err
 
- 		}
 
- 	}
 
- 	return nil
 
- }
 
- func getImageName(service types.ServiceConfig, projectName string) string {
 
- 	imageName := service.Image
 
- 	if imageName == "" {
 
- 		imageName = projectName + "_" + service.Name
 
- 	}
 
- 	return imageName
 
- }
 
- func (s *composeService) getCreateOptions(ctx context.Context, p *types.Project, service types.ServiceConfig,
 
- 	number int, inherit *moby.Container, autoRemove bool, attachStdin bool) (*container.Config, *container.HostConfig, *network.NetworkingConfig, error) {
 
- 	labels, err := s.prepareLabels(p, service, number)
 
- 	if err != nil {
 
- 		return nil, nil, nil, err
 
- 	}
 
- 	var (
 
- 		runCmd     strslice.StrSlice
 
- 		entrypoint strslice.StrSlice
 
- 	)
 
- 	if service.Command != nil {
 
- 		runCmd = strslice.StrSlice(service.Command)
 
- 	}
 
- 	if service.Entrypoint != nil {
 
- 		entrypoint = strslice.StrSlice(service.Entrypoint)
 
- 	}
 
- 	var (
 
- 		tty       = service.Tty
 
- 		stdinOpen = service.StdinOpen
 
- 	)
 
- 	volumeMounts, binds, mounts, err := s.buildContainerVolumes(ctx, *p, service, inherit)
 
- 	if err != nil {
 
- 		return nil, nil, nil, err
 
- 	}
 
- 	proxyConfig := types.MappingWithEquals(s.configFile.ParseProxyConfig(s.apiClient.DaemonHost(), nil))
 
- 	env := proxyConfig.OverrideBy(service.Environment)
 
- 	containerConfig := container.Config{
 
- 		Hostname:        service.Hostname,
 
- 		Domainname:      service.DomainName,
 
- 		User:            service.User,
 
- 		ExposedPorts:    buildContainerPorts(service),
 
- 		Tty:             tty,
 
- 		OpenStdin:       stdinOpen,
 
- 		StdinOnce:       attachStdin && stdinOpen,
 
- 		AttachStdin:     attachStdin,
 
- 		AttachStderr:    true,
 
- 		AttachStdout:    true,
 
- 		Cmd:             runCmd,
 
- 		Image:           getImageName(service, p.Name),
 
- 		WorkingDir:      service.WorkingDir,
 
- 		Entrypoint:      entrypoint,
 
- 		NetworkDisabled: service.NetworkMode == "disabled",
 
- 		MacAddress:      service.MacAddress,
 
- 		Labels:          labels,
 
- 		StopSignal:      service.StopSignal,
 
- 		Env:             ToMobyEnv(env),
 
- 		Healthcheck:     ToMobyHealthCheck(service.HealthCheck),
 
- 		Volumes:         volumeMounts,
 
- 		StopTimeout:     ToSeconds(service.StopGracePeriod),
 
- 	}
 
- 	portBindings := buildContainerPortBindingOptions(service)
 
- 	resources := getDeployResources(service)
 
- 	if service.NetworkMode == "" {
 
- 		service.NetworkMode = getDefaultNetworkMode(p, service)
 
- 	}
 
- 	var networkConfig *network.NetworkingConfig
 
- 	for _, id := range service.NetworksByPriority() {
 
- 		net := p.Networks[id]
 
- 		config := service.Networks[id]
 
- 		var ipam *network.EndpointIPAMConfig
 
- 		var (
 
- 			ipv4Address string
 
- 			ipv6Address string
 
- 		)
 
- 		if config != nil {
 
- 			ipv4Address = config.Ipv4Address
 
- 			ipv6Address = config.Ipv6Address
 
- 			ipam = &network.EndpointIPAMConfig{
 
- 				IPv4Address: ipv4Address,
 
- 				IPv6Address: ipv6Address,
 
- 			}
 
- 		}
 
- 		networkConfig = &network.NetworkingConfig{
 
- 			EndpointsConfig: map[string]*network.EndpointSettings{
 
- 				net.Name: {
 
- 					Aliases:     getAliases(service, config),
 
- 					IPAddress:   ipv4Address,
 
- 					IPv6Gateway: ipv6Address,
 
- 					IPAMConfig:  ipam,
 
- 				},
 
- 			},
 
- 		}
 
- 		break //nolint:staticcheck
 
- 	}
 
- 	tmpfs := map[string]string{}
 
- 	for _, t := range service.Tmpfs {
 
- 		if arr := strings.SplitN(t, ":", 2); len(arr) > 1 {
 
- 			tmpfs[arr[0]] = arr[1]
 
- 		} else {
 
- 			tmpfs[arr[0]] = ""
 
- 		}
 
- 	}
 
- 	var logConfig container.LogConfig
 
- 	if service.Logging != nil {
 
- 		logConfig = container.LogConfig{
 
- 			Type:   service.Logging.Driver,
 
- 			Config: service.Logging.Options,
 
- 		}
 
- 	}
 
- 	var volumesFrom []string
 
- 	for _, v := range service.VolumesFrom {
 
- 		if !strings.HasPrefix(v, "container:") {
 
- 			return nil, nil, nil, fmt.Errorf("invalid volume_from: %s", v)
 
- 		}
 
- 		volumesFrom = append(volumesFrom, v[len("container:"):])
 
- 	}
 
- 	securityOpts, err := parseSecurityOpts(p, service.SecurityOpt)
 
- 	if err != nil {
 
- 		return nil, nil, nil, err
 
- 	}
 
- 	hostConfig := container.HostConfig{
 
- 		AutoRemove:     autoRemove,
 
- 		Binds:          binds,
 
- 		Mounts:         mounts,
 
- 		CapAdd:         strslice.StrSlice(service.CapAdd),
 
- 		CapDrop:        strslice.StrSlice(service.CapDrop),
 
- 		NetworkMode:    container.NetworkMode(service.NetworkMode),
 
- 		Init:           service.Init,
 
- 		IpcMode:        container.IpcMode(service.Ipc),
 
- 		ReadonlyRootfs: service.ReadOnly,
 
- 		RestartPolicy:  getRestartPolicy(service),
 
- 		ShmSize:        int64(service.ShmSize),
 
- 		Sysctls:        service.Sysctls,
 
- 		PortBindings:   portBindings,
 
- 		Resources:      resources,
 
- 		VolumeDriver:   service.VolumeDriver,
 
- 		VolumesFrom:    volumesFrom,
 
- 		DNS:            service.DNS,
 
- 		DNSSearch:      service.DNSSearch,
 
- 		DNSOptions:     service.DNSOpts,
 
- 		ExtraHosts:     service.ExtraHosts,
 
- 		SecurityOpt:    securityOpts,
 
- 		UsernsMode:     container.UsernsMode(service.UserNSMode),
 
- 		Privileged:     service.Privileged,
 
- 		PidMode:        container.PidMode(service.Pid),
 
- 		Tmpfs:          tmpfs,
 
- 		Isolation:      container.Isolation(service.Isolation),
 
- 		LogConfig:      logConfig,
 
- 	}
 
- 	return &containerConfig, &hostConfig, networkConfig, nil
 
- }
 
- // copy/pasted from https://github.com/docker/cli/blob/9de1b162f/cli/command/container/opts.go#L673-L697 + RelativePath
 
- // TODO find so way to share this code with docker/cli
 
- func parseSecurityOpts(p *types.Project, securityOpts []string) ([]string, error) {
 
- 	for key, opt := range securityOpts {
 
- 		con := strings.SplitN(opt, "=", 2)
 
- 		if len(con) == 1 && con[0] != "no-new-privileges" {
 
- 			if strings.Contains(opt, ":") {
 
- 				con = strings.SplitN(opt, ":", 2)
 
- 			} else {
 
- 				return securityOpts, errors.Errorf("Invalid security-opt: %q", opt)
 
- 			}
 
- 		}
 
- 		if con[0] == "seccomp" && con[1] != "unconfined" {
 
- 			f, err := ioutil.ReadFile(p.RelativePath(con[1]))
 
- 			if err != nil {
 
- 				return securityOpts, errors.Errorf("opening seccomp profile (%s) failed: %v", con[1], err)
 
- 			}
 
- 			b := bytes.NewBuffer(nil)
 
- 			if err := json.Compact(b, f); err != nil {
 
- 				return securityOpts, errors.Errorf("compacting json for seccomp profile (%s) failed: %v", con[1], err)
 
- 			}
 
- 			securityOpts[key] = fmt.Sprintf("seccomp=%s", b.Bytes())
 
- 		}
 
- 	}
 
- 	return securityOpts, nil
 
- }
 
- func (s *composeService) prepareLabels(p *types.Project, service types.ServiceConfig, number int) (map[string]string, error) {
 
- 	labels := map[string]string{}
 
- 	for k, v := range service.Labels {
 
- 		labels[k] = v
 
- 	}
 
- 	labels[api.ProjectLabel] = p.Name
 
- 	labels[api.ServiceLabel] = service.Name
 
- 	labels[api.VersionLabel] = api.ComposeVersion
 
- 	if _, ok := service.Labels[api.OneoffLabel]; !ok {
 
- 		labels[api.OneoffLabel] = "False"
 
- 	}
 
- 	hash, err := ServiceHash(service)
 
- 	if err != nil {
 
- 		return nil, err
 
- 	}
 
- 	labels[api.ConfigHashLabel] = hash
 
- 	labels[api.WorkingDirLabel] = p.WorkingDir
 
- 	labels[api.ConfigFilesLabel] = strings.Join(p.ComposeFiles, ",")
 
- 	labels[api.ContainerNumberLabel] = strconv.Itoa(number)
 
- 	var dependencies []string
 
- 	for s := range service.DependsOn {
 
- 		dependencies = append(dependencies, s)
 
- 	}
 
- 	labels[api.DependenciesLabel] = strings.Join(dependencies, ",")
 
- 	return labels, nil
 
- }
 
- func getDefaultNetworkMode(project *types.Project, service types.ServiceConfig) string {
 
- 	mode := "none"
 
- 	if len(project.Networks) > 0 {
 
- 		for name := range getNetworksForService(service) {
 
- 			mode = project.Networks[name].Name
 
- 			break
 
- 		}
 
- 	}
 
- 	return mode
 
- }
 
- func getRestartPolicy(service types.ServiceConfig) container.RestartPolicy {
 
- 	var restart container.RestartPolicy
 
- 	if service.Restart != "" {
 
- 		split := strings.Split(service.Restart, ":")
 
- 		var attempts int
 
- 		if len(split) > 1 {
 
- 			attempts, _ = strconv.Atoi(split[1])
 
- 		}
 
- 		restart = container.RestartPolicy{
 
- 			Name:              split[0],
 
- 			MaximumRetryCount: attempts,
 
- 		}
 
- 	}
 
- 	if service.Deploy != nil && service.Deploy.RestartPolicy != nil {
 
- 		policy := *service.Deploy.RestartPolicy
 
- 		var attempts int
 
- 		if policy.MaxAttempts != nil {
 
- 			attempts = int(*policy.MaxAttempts)
 
- 		}
 
- 		restart = container.RestartPolicy{
 
- 			Name:              policy.Condition,
 
- 			MaximumRetryCount: attempts,
 
- 		}
 
- 	}
 
- 	return restart
 
- }
 
- func getDeployResources(s types.ServiceConfig) container.Resources {
 
- 	var swappiness *int64
 
- 	if s.MemSwappiness != 0 {
 
- 		val := int64(s.MemSwappiness)
 
- 		swappiness = &val
 
- 	}
 
- 	resources := container.Resources{
 
- 		CgroupParent:       s.CgroupParent,
 
- 		Memory:             int64(s.MemLimit),
 
- 		MemorySwap:         int64(s.MemSwapLimit),
 
- 		MemorySwappiness:   swappiness,
 
- 		MemoryReservation:  int64(s.MemReservation),
 
- 		CPUCount:           s.CPUCount,
 
- 		CPUPeriod:          s.CPUPeriod,
 
- 		CPUQuota:           s.CPUQuota,
 
- 		CPURealtimePeriod:  s.CPURTPeriod,
 
- 		CPURealtimeRuntime: s.CPURTRuntime,
 
- 		CPUShares:          s.CPUShares,
 
- 		CPUPercent:         int64(s.CPUS * 100),
 
- 		CpusetCpus:         s.CPUSet,
 
- 	}
 
- 	setBlkio(s.BlkioConfig, &resources)
 
- 	if s.Deploy != nil {
 
- 		setLimits(s.Deploy.Resources.Limits, &resources)
 
- 		setReservations(s.Deploy.Resources.Reservations, &resources)
 
- 	}
 
- 	for _, device := range s.Devices {
 
- 		// FIXME should use docker/cli parseDevice, unfortunately private
 
- 		src := ""
 
- 		dst := ""
 
- 		permissions := "rwm"
 
- 		arr := strings.Split(device, ":")
 
- 		switch len(arr) {
 
- 		case 3:
 
- 			permissions = arr[2]
 
- 			fallthrough
 
- 		case 2:
 
- 			dst = arr[1]
 
- 			fallthrough
 
- 		case 1:
 
- 			src = arr[0]
 
- 		}
 
- 		resources.Devices = append(resources.Devices, container.DeviceMapping{
 
- 			PathOnHost:        src,
 
- 			PathInContainer:   dst,
 
- 			CgroupPermissions: permissions,
 
- 		})
 
- 	}
 
- 	for name, u := range s.Ulimits {
 
- 		soft := u.Single
 
- 		if u.Soft != 0 {
 
- 			soft = u.Soft
 
- 		}
 
- 		hard := u.Single
 
- 		if u.Hard != 0 {
 
- 			hard = u.Hard
 
- 		}
 
- 		resources.Ulimits = append(resources.Ulimits, &units.Ulimit{
 
- 			Name: name,
 
- 			Hard: int64(hard),
 
- 			Soft: int64(soft),
 
- 		})
 
- 	}
 
- 	return resources
 
- }
 
- func setReservations(reservations *types.Resource, resources *container.Resources) {
 
- 	if reservations == nil {
 
- 		return
 
- 	}
 
- 	for _, device := range reservations.Devices {
 
- 		resources.DeviceRequests = append(resources.DeviceRequests, container.DeviceRequest{
 
- 			Capabilities: [][]string{device.Capabilities},
 
- 			Count:        int(device.Count),
 
- 			DeviceIDs:    device.IDs,
 
- 			Driver:       device.Driver,
 
- 		})
 
- 	}
 
- }
 
- func setLimits(limits *types.Resource, resources *container.Resources) {
 
- 	if limits == nil {
 
- 		return
 
- 	}
 
- 	if limits.MemoryBytes != 0 {
 
- 		resources.Memory = int64(limits.MemoryBytes)
 
- 	}
 
- 	if limits.NanoCPUs != "" {
 
- 		i, _ := strconv.ParseInt(limits.NanoCPUs, 10, 64)
 
- 		resources.NanoCPUs = i
 
- 	}
 
- }
 
- func setBlkio(blkio *types.BlkioConfig, resources *container.Resources) {
 
- 	if blkio == nil {
 
- 		return
 
- 	}
 
- 	resources.BlkioWeight = blkio.Weight
 
- 	for _, b := range blkio.WeightDevice {
 
- 		resources.BlkioWeightDevice = append(resources.BlkioWeightDevice, &blkiodev.WeightDevice{
 
- 			Path:   b.Path,
 
- 			Weight: b.Weight,
 
- 		})
 
- 	}
 
- 	for _, b := range blkio.DeviceReadBps {
 
- 		resources.BlkioDeviceReadBps = append(resources.BlkioDeviceReadBps, &blkiodev.ThrottleDevice{
 
- 			Path: b.Path,
 
- 			Rate: b.Rate,
 
- 		})
 
- 	}
 
- 	for _, b := range blkio.DeviceReadIOps {
 
- 		resources.BlkioDeviceReadIOps = append(resources.BlkioDeviceReadIOps, &blkiodev.ThrottleDevice{
 
- 			Path: b.Path,
 
- 			Rate: b.Rate,
 
- 		})
 
- 	}
 
- 	for _, b := range blkio.DeviceWriteBps {
 
- 		resources.BlkioDeviceWriteBps = append(resources.BlkioDeviceWriteBps, &blkiodev.ThrottleDevice{
 
- 			Path: b.Path,
 
- 			Rate: b.Rate,
 
- 		})
 
- 	}
 
- 	for _, b := range blkio.DeviceWriteIOps {
 
- 		resources.BlkioDeviceWriteIOps = append(resources.BlkioDeviceWriteIOps, &blkiodev.ThrottleDevice{
 
- 			Path: b.Path,
 
- 			Rate: b.Rate,
 
- 		})
 
- 	}
 
- }
 
- func buildContainerPorts(s types.ServiceConfig) nat.PortSet {
 
- 	ports := nat.PortSet{}
 
- 	for _, s := range s.Expose {
 
- 		p := nat.Port(s)
 
- 		ports[p] = struct{}{}
 
- 	}
 
- 	for _, p := range s.Ports {
 
- 		p := nat.Port(fmt.Sprintf("%d/%s", p.Target, p.Protocol))
 
- 		ports[p] = struct{}{}
 
- 	}
 
- 	return ports
 
- }
 
- func buildContainerPortBindingOptions(s types.ServiceConfig) nat.PortMap {
 
- 	bindings := nat.PortMap{}
 
- 	for _, port := range s.Ports {
 
- 		p := nat.Port(fmt.Sprintf("%d/%s", port.Target, port.Protocol))
 
- 		bind := bindings[p]
 
- 		binding := nat.PortBinding{
 
- 			HostIP: port.HostIP,
 
- 		}
 
- 		if port.Published > 0 {
 
- 			binding.HostPort = fmt.Sprint(port.Published)
 
- 		}
 
- 		bind = append(bind, binding)
 
- 		bindings[p] = bind
 
- 	}
 
- 	return bindings
 
- }
 
- func getVolumesFrom(project *types.Project, volumesFrom []string) ([]string, []string, error) {
 
- 	var volumes = []string{}
 
- 	var services = []string{}
 
- 	// parse volumes_from
 
- 	if len(volumesFrom) == 0 {
 
- 		return volumes, services, nil
 
- 	}
 
- 	for _, vol := range volumesFrom {
 
- 		spec := strings.Split(vol, ":")
 
- 		if len(spec) == 0 {
 
- 			continue
 
- 		}
 
- 		if spec[0] == "container" {
 
- 			volumes = append(volumes, strings.Join(spec[1:], ":"))
 
- 			continue
 
- 		}
 
- 		serviceName := spec[0]
 
- 		services = append(services, serviceName)
 
- 		service, err := project.GetService(serviceName)
 
- 		if err != nil {
 
- 			return nil, nil, err
 
- 		}
 
- 		firstContainer := getContainerName(project.Name, service, 1)
 
- 		v := fmt.Sprintf("container:%s", firstContainer)
 
- 		if len(spec) > 2 {
 
- 			v = fmt.Sprintf("container:%s:%s", firstContainer, strings.Join(spec[1:], ":"))
 
- 		}
 
- 		volumes = append(volumes, v)
 
- 	}
 
- 	return volumes, services, nil
 
- }
 
- func getDependentServiceFromMode(mode string) string {
 
- 	if strings.HasPrefix(mode, types.NetworkModeServicePrefix) {
 
- 		return mode[len(types.NetworkModeServicePrefix):]
 
- 	}
 
- 	return ""
 
- }
 
- func (s *composeService) buildContainerVolumes(ctx context.Context, p types.Project, service types.ServiceConfig,
 
- 	inherit *moby.Container) (map[string]struct{}, []string, []mount.Mount, error) {
 
- 	var mounts = []mount.Mount{}
 
- 	image := getImageName(service, p.Name)
 
- 	imgInspect, _, err := s.apiClient.ImageInspectWithRaw(ctx, image)
 
- 	if err != nil {
 
- 		return nil, nil, nil, err
 
- 	}
 
- 	mountOptions, err := buildContainerMountOptions(p, service, imgInspect, inherit)
 
- 	if err != nil {
 
- 		return nil, nil, nil, err
 
- 	}
 
- 	volumeMounts := map[string]struct{}{}
 
- 	binds := []string{}
 
- MOUNTS:
 
- 	for _, m := range mountOptions {
 
- 		volumeMounts[m.Target] = struct{}{}
 
- 		// `Bind` API is used when host path need to be created if missing, `Mount` is preferred otherwise
 
- 		if m.Type == mount.TypeBind || m.Type == mount.TypeNamedPipe {
 
- 			for _, v := range service.Volumes {
 
- 				if v.Target == m.Target && v.Bind != nil && v.Bind.CreateHostPath {
 
- 					mode := "rw"
 
- 					if m.ReadOnly {
 
- 						mode = "ro"
 
- 					}
 
- 					binds = append(binds, fmt.Sprintf("%s:%s:%s", m.Source, m.Target, mode))
 
- 					continue MOUNTS
 
- 				}
 
- 			}
 
- 		}
 
- 		mounts = append(mounts, m)
 
- 	}
 
- 	return volumeMounts, binds, mounts, nil
 
- }
 
- func buildContainerMountOptions(p types.Project, s types.ServiceConfig, img moby.ImageInspect, inherit *moby.Container) ([]mount.Mount, error) {
 
- 	var mounts = map[string]mount.Mount{}
 
- 	if inherit != nil {
 
- 		for _, m := range inherit.Mounts {
 
- 			if m.Type == "tmpfs" {
 
- 				continue
 
- 			}
 
- 			src := m.Source
 
- 			if m.Type == "volume" {
 
- 				src = m.Name
 
- 			}
 
- 			m.Destination = path.Clean(m.Destination)
 
- 			if img.Config != nil {
 
- 				if _, ok := img.Config.Volumes[m.Destination]; ok {
 
- 					// inherit previous container's anonymous volume
 
- 					mounts[m.Destination] = mount.Mount{
 
- 						Type:     m.Type,
 
- 						Source:   src,
 
- 						Target:   m.Destination,
 
- 						ReadOnly: !m.RW,
 
- 					}
 
- 				}
 
- 			}
 
- 			for i, v := range s.Volumes {
 
- 				if v.Target != m.Destination {
 
- 					continue
 
- 				}
 
- 				if v.Source == "" {
 
- 					// inherit previous container's anonymous volume
 
- 					mounts[m.Destination] = mount.Mount{
 
- 						Type:     m.Type,
 
- 						Source:   src,
 
- 						Target:   m.Destination,
 
- 						ReadOnly: !m.RW,
 
- 					}
 
- 					// Avoid mount to be later re-defined
 
- 					l := len(s.Volumes) - 1
 
- 					s.Volumes[i] = s.Volumes[l]
 
- 					s.Volumes = s.Volumes[:l]
 
- 				}
 
- 			}
 
- 		}
 
- 	}
 
- 	mounts, err := fillBindMounts(p, s, mounts)
 
- 	if err != nil {
 
- 		return nil, err
 
- 	}
 
- 	values := make([]mount.Mount, 0, len(mounts))
 
- 	for _, v := range mounts {
 
- 		values = append(values, v)
 
- 	}
 
- 	return values, nil
 
- }
 
- func fillBindMounts(p types.Project, s types.ServiceConfig, m map[string]mount.Mount) (map[string]mount.Mount, error) {
 
- 	for _, v := range s.Volumes {
 
- 		bindMount, err := buildMount(p, v)
 
- 		if err != nil {
 
- 			return nil, err
 
- 		}
 
- 		m[bindMount.Target] = bindMount
 
- 	}
 
- 	secrets, err := buildContainerSecretMounts(p, s)
 
- 	if err != nil {
 
- 		return nil, err
 
- 	}
 
- 	for _, s := range secrets {
 
- 		if _, found := m[s.Target]; found {
 
- 			continue
 
- 		}
 
- 		m[s.Target] = s
 
- 	}
 
- 	configs, err := buildContainerConfigMounts(p, s)
 
- 	if err != nil {
 
- 		return nil, err
 
- 	}
 
- 	for _, c := range configs {
 
- 		if _, found := m[c.Target]; found {
 
- 			continue
 
- 		}
 
- 		m[c.Target] = c
 
- 	}
 
- 	return m, nil
 
- }
 
- func buildContainerConfigMounts(p types.Project, s types.ServiceConfig) ([]mount.Mount, error) {
 
- 	var mounts = map[string]mount.Mount{}
 
- 	configsBaseDir := "/"
 
- 	for _, config := range s.Configs {
 
- 		target := config.Target
 
- 		if config.Target == "" {
 
- 			target = configsBaseDir + config.Source
 
- 		} else if !isUnixAbs(config.Target) {
 
- 			target = configsBaseDir + config.Target
 
- 		}
 
- 		definedConfig := p.Configs[config.Source]
 
- 		if definedConfig.External.External {
 
- 			return nil, fmt.Errorf("unsupported external config %s", definedConfig.Name)
 
- 		}
 
- 		bindMount, err := buildMount(p, types.ServiceVolumeConfig{
 
- 			Type:     types.VolumeTypeBind,
 
- 			Source:   definedConfig.File,
 
- 			Target:   target,
 
- 			ReadOnly: true,
 
- 		})
 
- 		if err != nil {
 
- 			return nil, err
 
- 		}
 
- 		mounts[target] = bindMount
 
- 	}
 
- 	values := make([]mount.Mount, 0, len(mounts))
 
- 	for _, v := range mounts {
 
- 		values = append(values, v)
 
- 	}
 
- 	return values, nil
 
- }
 
- func buildContainerSecretMounts(p types.Project, s types.ServiceConfig) ([]mount.Mount, error) {
 
- 	var mounts = map[string]mount.Mount{}
 
- 	secretsDir := "/run/secrets/"
 
- 	for _, secret := range s.Secrets {
 
- 		target := secret.Target
 
- 		if secret.Target == "" {
 
- 			target = secretsDir + secret.Source
 
- 		} else if !isUnixAbs(secret.Target) {
 
- 			target = secretsDir + secret.Target
 
- 		}
 
- 		definedSecret := p.Secrets[secret.Source]
 
- 		if definedSecret.External.External {
 
- 			return nil, fmt.Errorf("unsupported external secret %s", definedSecret.Name)
 
- 		}
 
- 		mount, err := buildMount(p, types.ServiceVolumeConfig{
 
- 			Type:     types.VolumeTypeBind,
 
- 			Source:   definedSecret.File,
 
- 			Target:   target,
 
- 			ReadOnly: true,
 
- 		})
 
- 		if err != nil {
 
- 			return nil, err
 
- 		}
 
- 		mounts[target] = mount
 
- 	}
 
- 	values := make([]mount.Mount, 0, len(mounts))
 
- 	for _, v := range mounts {
 
- 		values = append(values, v)
 
- 	}
 
- 	return values, nil
 
- }
 
- func isUnixAbs(path string) bool {
 
- 	return strings.HasPrefix(path, "/")
 
- }
 
- func buildMount(project types.Project, volume types.ServiceVolumeConfig) (mount.Mount, error) {
 
- 	source := volume.Source
 
- 	// on windows, filepath.IsAbs(source) is false for unix style abs path like /var/run/docker.sock.
 
- 	// do not replace these with  filepath.Abs(source) that will include a default drive.
 
- 	if volume.Type == types.VolumeTypeBind && !filepath.IsAbs(source) && !strings.HasPrefix(source, "/") {
 
- 		// volume source has already been prefixed with workdir if required, by compose-go project loader
 
- 		var err error
 
- 		source, err = filepath.Abs(source)
 
- 		if err != nil {
 
- 			return mount.Mount{}, err
 
- 		}
 
- 	}
 
- 	if volume.Type == types.VolumeTypeVolume {
 
- 		if volume.Source != "" {
 
- 			pVolume, ok := project.Volumes[volume.Source]
 
- 			if ok {
 
- 				source = pVolume.Name
 
- 			}
 
- 		}
 
- 	}
 
- 	bind, vol, tmpfs := buildMountOptions(volume)
 
- 	volume.Target = path.Clean(volume.Target)
 
- 	return mount.Mount{
 
- 		Type:          mount.Type(volume.Type),
 
- 		Source:        source,
 
- 		Target:        volume.Target,
 
- 		ReadOnly:      volume.ReadOnly,
 
- 		Consistency:   mount.Consistency(volume.Consistency),
 
- 		BindOptions:   bind,
 
- 		VolumeOptions: vol,
 
- 		TmpfsOptions:  tmpfs,
 
- 	}, nil
 
- }
 
- func buildMountOptions(volume types.ServiceVolumeConfig) (*mount.BindOptions, *mount.VolumeOptions, *mount.TmpfsOptions) {
 
- 	switch volume.Type {
 
- 	case "bind":
 
- 		if volume.Volume != nil {
 
- 			logrus.Warnf("mount of type `bind` should not define `volume` option")
 
- 		}
 
- 		if volume.Tmpfs != nil {
 
- 			logrus.Warnf("mount of type `tmpfs` should not define `tmpfs` option")
 
- 		}
 
- 		return buildBindOption(volume.Bind), nil, nil
 
- 	case "volume":
 
- 		if volume.Bind != nil {
 
- 			logrus.Warnf("mount of type `volume` should not define `bind` option")
 
- 		}
 
- 		if volume.Tmpfs != nil {
 
- 			logrus.Warnf("mount of type `volume` should not define `tmpfs` option")
 
- 		}
 
- 		return nil, buildVolumeOptions(volume.Volume), nil
 
- 	case "tmpfs":
 
- 		if volume.Bind != nil {
 
- 			logrus.Warnf("mount of type `tmpfs` should not define `bind` option")
 
- 		}
 
- 		if volume.Tmpfs != nil {
 
- 			logrus.Warnf("mount of type `tmpfs` should not define `volumeZ` option")
 
- 		}
 
- 		return nil, nil, buildTmpfsOptions(volume.Tmpfs)
 
- 	}
 
- 	return nil, nil, nil
 
- }
 
- func buildBindOption(bind *types.ServiceVolumeBind) *mount.BindOptions {
 
- 	if bind == nil {
 
- 		return nil
 
- 	}
 
- 	return &mount.BindOptions{
 
- 		Propagation: mount.Propagation(bind.Propagation),
 
- 		// NonRecursive: false, FIXME missing from model ?
 
- 	}
 
- }
 
- func buildVolumeOptions(vol *types.ServiceVolumeVolume) *mount.VolumeOptions {
 
- 	if vol == nil {
 
- 		return nil
 
- 	}
 
- 	return &mount.VolumeOptions{
 
- 		NoCopy: vol.NoCopy,
 
- 		// Labels:       , // FIXME missing from model ?
 
- 		// DriverConfig: , // FIXME missing from model ?
 
- 	}
 
- }
 
- func buildTmpfsOptions(tmpfs *types.ServiceVolumeTmpfs) *mount.TmpfsOptions {
 
- 	if tmpfs == nil {
 
- 		return nil
 
- 	}
 
- 	return &mount.TmpfsOptions{
 
- 		SizeBytes: int64(tmpfs.Size),
 
- 		// Mode:      , // FIXME missing from model ?
 
- 	}
 
- }
 
- func getAliases(s types.ServiceConfig, c *types.ServiceNetworkConfig) []string {
 
- 	aliases := []string{s.Name}
 
- 	if c != nil {
 
- 		aliases = append(aliases, c.Aliases...)
 
- 	}
 
- 	return aliases
 
- }
 
- func getNetworksForService(s types.ServiceConfig) map[string]*types.ServiceNetworkConfig {
 
- 	if len(s.Networks) > 0 {
 
- 		return s.Networks
 
- 	}
 
- 	if s.NetworkMode != "" {
 
- 		return nil
 
- 	}
 
- 	return map[string]*types.ServiceNetworkConfig{"default": nil}
 
- }
 
- func (s *composeService) ensureNetwork(ctx context.Context, n types.NetworkConfig) error {
 
- 	_, err := s.apiClient.NetworkInspect(ctx, n.Name, moby.NetworkInspectOptions{})
 
- 	if err != nil {
 
- 		if errdefs.IsNotFound(err) {
 
- 			if n.External.External {
 
- 				return fmt.Errorf("network %s declared as external, but could not be found", n.Name)
 
- 			}
 
- 			var ipam *network.IPAM
 
- 			if n.Ipam.Config != nil {
 
- 				var config []network.IPAMConfig
 
- 				for _, pool := range n.Ipam.Config {
 
- 					config = append(config, network.IPAMConfig{
 
- 						Subnet:     pool.Subnet,
 
- 						IPRange:    pool.IPRange,
 
- 						Gateway:    pool.Gateway,
 
- 						AuxAddress: pool.AuxiliaryAddresses,
 
- 					})
 
- 				}
 
- 				ipam = &network.IPAM{
 
- 					Driver: n.Ipam.Driver,
 
- 					Config: config,
 
- 				}
 
- 			}
 
- 			createOpts := moby.NetworkCreate{
 
- 				// TODO NameSpace Labels
 
- 				Labels:     n.Labels,
 
- 				Driver:     n.Driver,
 
- 				Options:    n.DriverOpts,
 
- 				Internal:   n.Internal,
 
- 				Attachable: n.Attachable,
 
- 				IPAM:       ipam,
 
- 			}
 
- 			if n.Ipam.Driver != "" || len(n.Ipam.Config) > 0 {
 
- 				createOpts.IPAM = &network.IPAM{}
 
- 			}
 
- 			if n.Ipam.Driver != "" {
 
- 				createOpts.IPAM.Driver = n.Ipam.Driver
 
- 			}
 
- 			for _, ipamConfig := range n.Ipam.Config {
 
- 				config := network.IPAMConfig{
 
- 					Subnet: ipamConfig.Subnet,
 
- 				}
 
- 				createOpts.IPAM.Config = append(createOpts.IPAM.Config, config)
 
- 			}
 
- 			networkEventName := fmt.Sprintf("Network %s", n.Name)
 
- 			w := progress.ContextWriter(ctx)
 
- 			w.Event(progress.CreatingEvent(networkEventName))
 
- 			if _, err := s.apiClient.NetworkCreate(ctx, n.Name, createOpts); err != nil {
 
- 				w.Event(progress.ErrorEvent(networkEventName))
 
- 				return errors.Wrapf(err, "failed to create network %s", n.Name)
 
- 			}
 
- 			w.Event(progress.CreatedEvent(networkEventName))
 
- 			return nil
 
- 		}
 
- 		return err
 
- 	}
 
- 	return nil
 
- }
 
- func (s *composeService) removeNetwork(ctx context.Context, networkID string, networkName string) error {
 
- 	w := progress.ContextWriter(ctx)
 
- 	eventName := fmt.Sprintf("Network %s", networkName)
 
- 	w.Event(progress.RemovingEvent(eventName))
 
- 	if err := s.apiClient.NetworkRemove(ctx, networkID); err != nil {
 
- 		w.Event(progress.ErrorEvent(eventName))
 
- 		return errors.Wrapf(err, fmt.Sprintf("failed to remove network %s", networkID))
 
- 	}
 
- 	w.Event(progress.RemovedEvent(eventName))
 
- 	return nil
 
- }
 
- func (s *composeService) ensureVolume(ctx context.Context, volume types.VolumeConfig) error {
 
- 	// TODO could identify volume by label vs name
 
- 	_, err := s.apiClient.VolumeInspect(ctx, volume.Name)
 
- 	if err != nil {
 
- 		if !errdefs.IsNotFound(err) {
 
- 			return err
 
- 		}
 
- 		eventName := fmt.Sprintf("Volume %q", volume.Name)
 
- 		w := progress.ContextWriter(ctx)
 
- 		w.Event(progress.CreatingEvent(eventName))
 
- 		_, err := s.apiClient.VolumeCreate(ctx, volume_api.VolumeCreateBody{
 
- 			Labels:     volume.Labels,
 
- 			Name:       volume.Name,
 
- 			Driver:     volume.Driver,
 
- 			DriverOpts: volume.DriverOpts,
 
- 		})
 
- 		if err != nil {
 
- 			w.Event(progress.ErrorEvent(eventName))
 
- 			return err
 
- 		}
 
- 		w.Event(progress.CreatedEvent(eventName))
 
- 	}
 
- 	return nil
 
- }
 
 
  |