create.go 41 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385
  1. /*
  2. Copyright 2020 Docker Compose CLI authors
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package compose
  14. import (
  15. "bytes"
  16. "context"
  17. "encoding/json"
  18. "errors"
  19. "fmt"
  20. "io/fs"
  21. "os"
  22. "path"
  23. "path/filepath"
  24. "sort"
  25. "strconv"
  26. "strings"
  27. "github.com/compose-spec/compose-go/v2/types"
  28. "github.com/docker/compose/v2/internal/desktop"
  29. pathutil "github.com/docker/compose/v2/internal/paths"
  30. "github.com/docker/compose/v2/pkg/api"
  31. "github.com/docker/compose/v2/pkg/progress"
  32. "github.com/docker/compose/v2/pkg/utils"
  33. moby "github.com/docker/docker/api/types"
  34. "github.com/docker/docker/api/types/blkiodev"
  35. "github.com/docker/docker/api/types/container"
  36. "github.com/docker/docker/api/types/filters"
  37. "github.com/docker/docker/api/types/mount"
  38. "github.com/docker/docker/api/types/network"
  39. "github.com/docker/docker/api/types/strslice"
  40. "github.com/docker/docker/api/types/versions"
  41. volumetypes "github.com/docker/docker/api/types/volume"
  42. "github.com/docker/docker/errdefs"
  43. "github.com/docker/go-connections/nat"
  44. "github.com/sirupsen/logrus"
  45. )
  46. type createOptions struct {
  47. AutoRemove bool
  48. AttachStdin bool
  49. UseNetworkAliases bool
  50. Labels types.Labels
  51. }
  52. type createConfigs struct {
  53. Container *container.Config
  54. Host *container.HostConfig
  55. Network *network.NetworkingConfig
  56. Links []string
  57. }
  58. func (s *composeService) Create(ctx context.Context, project *types.Project, createOpts api.CreateOptions) error {
  59. return progress.RunWithTitle(ctx, func(ctx context.Context) error {
  60. return s.create(ctx, project, createOpts)
  61. }, s.stdinfo(), "Creating")
  62. }
  63. func (s *composeService) create(ctx context.Context, project *types.Project, options api.CreateOptions) error {
  64. if len(options.Services) == 0 {
  65. options.Services = project.ServiceNames()
  66. }
  67. err := project.CheckContainerNameUnicity()
  68. if err != nil {
  69. return err
  70. }
  71. var observedState Containers
  72. observedState, err = s.getContainers(ctx, project.Name, oneOffInclude, true)
  73. if err != nil {
  74. return err
  75. }
  76. err = s.ensureImagesExists(ctx, project, options.Build, options.QuietPull)
  77. if err != nil {
  78. return err
  79. }
  80. prepareNetworks(project)
  81. if err := s.ensureNetworks(ctx, project.Networks); err != nil {
  82. return err
  83. }
  84. if err := s.ensureProjectVolumes(ctx, project); err != nil {
  85. return err
  86. }
  87. orphans := observedState.filter(isOrphaned(project))
  88. if len(orphans) > 0 && !options.IgnoreOrphans {
  89. if options.RemoveOrphans {
  90. err := s.removeContainers(ctx, orphans, nil, false)
  91. if err != nil {
  92. return err
  93. }
  94. } else {
  95. logrus.Warnf("Found orphan containers (%s) for this project. If "+
  96. "you removed or renamed this service in your compose "+
  97. "file, you can run this command with the "+
  98. "--remove-orphans flag to clean it up.", orphans.names())
  99. }
  100. }
  101. return newConvergence(options.Services, observedState, s).apply(ctx, project, options)
  102. }
  103. func prepareNetworks(project *types.Project) {
  104. for k, nw := range project.Networks {
  105. nw.Labels = nw.Labels.Add(api.NetworkLabel, k)
  106. nw.Labels = nw.Labels.Add(api.ProjectLabel, project.Name)
  107. nw.Labels = nw.Labels.Add(api.VersionLabel, api.ComposeVersion)
  108. project.Networks[k] = nw
  109. }
  110. }
  111. func (s *composeService) ensureNetworks(ctx context.Context, networks types.Networks) error {
  112. for i, nw := range networks {
  113. err := s.ensureNetwork(ctx, &nw)
  114. if err != nil {
  115. return err
  116. }
  117. networks[i] = nw
  118. }
  119. return nil
  120. }
  121. func (s *composeService) ensureProjectVolumes(ctx context.Context, project *types.Project) error {
  122. for k, volume := range project.Volumes {
  123. volume.Labels = volume.Labels.Add(api.VolumeLabel, k)
  124. volume.Labels = volume.Labels.Add(api.ProjectLabel, project.Name)
  125. volume.Labels = volume.Labels.Add(api.VersionLabel, api.ComposeVersion)
  126. err := s.ensureVolume(ctx, volume, project.Name)
  127. if err != nil {
  128. return err
  129. }
  130. }
  131. err := func() error {
  132. if s.manageDesktopFileSharesEnabled(ctx) {
  133. // collect all the bind mount paths and try to set up file shares in
  134. // Docker Desktop for them
  135. var paths []string
  136. for _, svcName := range project.ServiceNames() {
  137. svc := project.Services[svcName]
  138. for _, vol := range svc.Volumes {
  139. if vol.Type != string(mount.TypeBind) {
  140. continue
  141. }
  142. p := filepath.Clean(vol.Source)
  143. if !filepath.IsAbs(p) {
  144. return fmt.Errorf("file share path is not absolute: %s", p)
  145. }
  146. if fi, err := os.Stat(p); errors.Is(err, fs.ErrNotExist) {
  147. // actual directory will be implicitly created when the
  148. // file share is initialized if it doesn't exist, so
  149. // need to filter out any that should not be auto-created
  150. if vol.Bind != nil && !vol.Bind.CreateHostPath {
  151. logrus.Debugf("Skipping creating file share for %q: does not exist and `create_host_path` is false", p)
  152. continue
  153. }
  154. } else if err != nil {
  155. // if we can't read the path, we won't be able ot make
  156. // a file share for it
  157. logrus.Debugf("Skipping creating file share for %q: %v", p, err)
  158. continue
  159. } else if !fi.IsDir() {
  160. // ignore files & special types (e.g. Unix sockets)
  161. logrus.Debugf("Skipping creating file share for %q: not a directory", p)
  162. continue
  163. }
  164. paths = append(paths, p)
  165. }
  166. }
  167. // remove duplicate/unnecessary child paths and sort them for predictability
  168. paths = pathutil.EncompassingPaths(paths)
  169. sort.Strings(paths)
  170. fileShareManager := desktop.NewFileShareManager(s.desktopCli, project.Name, paths)
  171. if err := fileShareManager.EnsureExists(ctx); err != nil {
  172. return fmt.Errorf("initializing file shares: %w", err)
  173. }
  174. }
  175. return nil
  176. }()
  177. if err != nil {
  178. progress.ContextWriter(ctx).TailMsgf("Failed to prepare Synchronized file shares: %v", err)
  179. }
  180. return nil
  181. }
  182. func (s *composeService) getCreateConfigs(ctx context.Context,
  183. p *types.Project,
  184. service types.ServiceConfig,
  185. number int,
  186. inherit *moby.Container,
  187. opts createOptions,
  188. ) (createConfigs, error) {
  189. labels, err := s.prepareLabels(opts.Labels, service, number)
  190. if err != nil {
  191. return createConfigs{}, err
  192. }
  193. var (
  194. runCmd strslice.StrSlice
  195. entrypoint strslice.StrSlice
  196. )
  197. if service.Command != nil {
  198. runCmd = strslice.StrSlice(service.Command)
  199. }
  200. if service.Entrypoint != nil {
  201. entrypoint = strslice.StrSlice(service.Entrypoint)
  202. }
  203. var (
  204. tty = service.Tty
  205. stdinOpen = service.StdinOpen
  206. )
  207. proxyConfig := types.MappingWithEquals(s.configFile().ParseProxyConfig(s.apiClient().DaemonHost(), nil))
  208. env := proxyConfig.OverrideBy(service.Environment)
  209. var mainNwName string
  210. var mainNw *types.ServiceNetworkConfig
  211. if len(service.Networks) > 0 {
  212. mainNwName = service.NetworksByPriority()[0]
  213. mainNw = service.Networks[mainNwName]
  214. }
  215. macAddress, err := s.prepareContainerMACAddress(ctx, service, mainNw, mainNwName)
  216. if err != nil {
  217. return createConfigs{}, err
  218. }
  219. healthcheck, err := s.ToMobyHealthCheck(ctx, service.HealthCheck)
  220. if err != nil {
  221. return createConfigs{}, err
  222. }
  223. var containerConfig = container.Config{
  224. Hostname: service.Hostname,
  225. Domainname: service.DomainName,
  226. User: service.User,
  227. ExposedPorts: buildContainerPorts(service),
  228. Tty: tty,
  229. OpenStdin: stdinOpen,
  230. StdinOnce: opts.AttachStdin && stdinOpen,
  231. AttachStdin: opts.AttachStdin,
  232. AttachStderr: true,
  233. AttachStdout: true,
  234. Cmd: runCmd,
  235. Image: api.GetImageNameOrDefault(service, p.Name),
  236. WorkingDir: service.WorkingDir,
  237. Entrypoint: entrypoint,
  238. NetworkDisabled: service.NetworkMode == "disabled",
  239. MacAddress: macAddress,
  240. Labels: labels,
  241. StopSignal: service.StopSignal,
  242. Env: ToMobyEnv(env),
  243. Healthcheck: healthcheck,
  244. StopTimeout: ToSeconds(service.StopGracePeriod),
  245. } // VOLUMES/MOUNTS/FILESYSTEMS
  246. tmpfs := map[string]string{}
  247. for _, t := range service.Tmpfs {
  248. if arr := strings.SplitN(t, ":", 2); len(arr) > 1 {
  249. tmpfs[arr[0]] = arr[1]
  250. } else {
  251. tmpfs[arr[0]] = ""
  252. }
  253. }
  254. binds, mounts, err := s.buildContainerVolumes(ctx, *p, service, inherit)
  255. if err != nil {
  256. return createConfigs{}, err
  257. }
  258. // NETWORKING
  259. links, err := s.getLinks(ctx, p.Name, service, number)
  260. if err != nil {
  261. return createConfigs{}, err
  262. }
  263. apiVersion, err := s.RuntimeVersion(ctx)
  264. if err != nil {
  265. return createConfigs{}, err
  266. }
  267. networkMode, networkingConfig := defaultNetworkSettings(p, service, number, links, opts.UseNetworkAliases, apiVersion)
  268. portBindings := buildContainerPortBindingOptions(service)
  269. // MISC
  270. resources := getDeployResources(service)
  271. var logConfig container.LogConfig
  272. if service.Logging != nil {
  273. logConfig = container.LogConfig{
  274. Type: service.Logging.Driver,
  275. Config: service.Logging.Options,
  276. }
  277. }
  278. securityOpts, unconfined, err := parseSecurityOpts(p, service.SecurityOpt)
  279. if err != nil {
  280. return createConfigs{}, err
  281. }
  282. hostConfig := container.HostConfig{
  283. AutoRemove: opts.AutoRemove,
  284. Annotations: service.Annotations,
  285. Binds: binds,
  286. Mounts: mounts,
  287. CapAdd: strslice.StrSlice(service.CapAdd),
  288. CapDrop: strslice.StrSlice(service.CapDrop),
  289. NetworkMode: networkMode,
  290. Init: service.Init,
  291. IpcMode: container.IpcMode(service.Ipc),
  292. CgroupnsMode: container.CgroupnsMode(service.Cgroup),
  293. ReadonlyRootfs: service.ReadOnly,
  294. RestartPolicy: getRestartPolicy(service),
  295. ShmSize: int64(service.ShmSize),
  296. Sysctls: service.Sysctls,
  297. PortBindings: portBindings,
  298. Resources: resources,
  299. VolumeDriver: service.VolumeDriver,
  300. VolumesFrom: service.VolumesFrom,
  301. DNS: service.DNS,
  302. DNSSearch: service.DNSSearch,
  303. DNSOptions: service.DNSOpts,
  304. ExtraHosts: service.ExtraHosts.AsList(":"),
  305. SecurityOpt: securityOpts,
  306. StorageOpt: service.StorageOpt,
  307. UsernsMode: container.UsernsMode(service.UserNSMode),
  308. UTSMode: container.UTSMode(service.Uts),
  309. Privileged: service.Privileged,
  310. PidMode: container.PidMode(service.Pid),
  311. Tmpfs: tmpfs,
  312. Isolation: container.Isolation(service.Isolation),
  313. Runtime: service.Runtime,
  314. LogConfig: logConfig,
  315. GroupAdd: service.GroupAdd,
  316. Links: links,
  317. OomScoreAdj: int(service.OomScoreAdj),
  318. }
  319. if unconfined {
  320. hostConfig.MaskedPaths = []string{}
  321. hostConfig.ReadonlyPaths = []string{}
  322. }
  323. cfgs := createConfigs{
  324. Container: &containerConfig,
  325. Host: &hostConfig,
  326. Network: networkingConfig,
  327. Links: links,
  328. }
  329. return cfgs, nil
  330. }
  331. // prepareContainerMACAddress handles the service-level mac_address field and the newer mac_address field added to service
  332. // network config. This newer field is only compatible with the Engine API v1.44 (and onwards), and this API version
  333. // also deprecates the container-wide mac_address field. Thus, this method will validate service config and mutate the
  334. // passed mainNw to provide backward-compatibility whenever possible.
  335. //
  336. // It returns the container-wide MAC address, but this value will be kept empty for newer API versions.
  337. func (s *composeService) prepareContainerMACAddress(ctx context.Context, service types.ServiceConfig, mainNw *types.ServiceNetworkConfig, nwName string) (string, error) {
  338. version, err := s.RuntimeVersion(ctx)
  339. if err != nil {
  340. return "", err
  341. }
  342. // Engine API 1.44 added support for endpoint-specific MAC address and now returns a warning when a MAC address is
  343. // set in container.Config. Thus, we have to jump through a number of hoops:
  344. //
  345. // 1. Top-level mac_address and main endpoint's MAC address should be the same ;
  346. // 2. If supported by the API, top-level mac_address should be migrated to the main endpoint and container.Config
  347. // should be kept empty ;
  348. // 3. Otherwise, the endpoint mac_address should be set in container.Config and no other endpoint-specific
  349. // mac_address can be specified. If that's the case, use top-level mac_address ;
  350. //
  351. // After that, if an endpoint mac_address is set, it's either user-defined or migrated by the code below, so
  352. // there's no need to check for API version in defaultNetworkSettings.
  353. macAddress := service.MacAddress
  354. if macAddress != "" && mainNw != nil && mainNw.MacAddress != "" && mainNw.MacAddress != macAddress {
  355. return "", fmt.Errorf("the service-level mac_address should have the same value as network %s", nwName)
  356. }
  357. if versions.GreaterThanOrEqualTo(version, "1.44") {
  358. if mainNw != nil && mainNw.MacAddress == "" {
  359. mainNw.MacAddress = macAddress
  360. }
  361. macAddress = ""
  362. } else if len(service.Networks) > 0 {
  363. var withMacAddress []string
  364. for nwName, nw := range service.Networks {
  365. if nw != nil && nw.MacAddress != "" {
  366. withMacAddress = append(withMacAddress, nwName)
  367. }
  368. }
  369. if len(withMacAddress) > 1 {
  370. return "", fmt.Errorf("a MAC address is specified for multiple networks (%s), but this feature requires Docker Engine 1.44 or later (currently: %s)", strings.Join(withMacAddress, ", "), version)
  371. }
  372. if mainNw != nil {
  373. macAddress = mainNw.MacAddress
  374. }
  375. }
  376. return macAddress, nil
  377. }
  378. func getAliases(project *types.Project, service types.ServiceConfig, serviceIndex int, networkKey string, useNetworkAliases bool) []string {
  379. aliases := []string{getContainerName(project.Name, service, serviceIndex)}
  380. if useNetworkAliases {
  381. aliases = append(aliases, service.Name)
  382. if cfg := service.Networks[networkKey]; cfg != nil {
  383. aliases = append(aliases, cfg.Aliases...)
  384. }
  385. }
  386. return aliases
  387. }
  388. func createEndpointSettings(p *types.Project, service types.ServiceConfig, serviceIndex int, networkKey string, links []string, useNetworkAliases bool) *network.EndpointSettings {
  389. config := service.Networks[networkKey]
  390. var ipam *network.EndpointIPAMConfig
  391. var (
  392. ipv4Address string
  393. ipv6Address string
  394. macAddress string
  395. driverOpts types.Options
  396. )
  397. if config != nil {
  398. ipv4Address = config.Ipv4Address
  399. ipv6Address = config.Ipv6Address
  400. ipam = &network.EndpointIPAMConfig{
  401. IPv4Address: ipv4Address,
  402. IPv6Address: ipv6Address,
  403. LinkLocalIPs: config.LinkLocalIPs,
  404. }
  405. macAddress = config.MacAddress
  406. driverOpts = config.DriverOpts
  407. }
  408. return &network.EndpointSettings{
  409. Aliases: getAliases(p, service, serviceIndex, networkKey, useNetworkAliases),
  410. Links: links,
  411. IPAddress: ipv4Address,
  412. IPv6Gateway: ipv6Address,
  413. IPAMConfig: ipam,
  414. MacAddress: macAddress,
  415. DriverOpts: driverOpts,
  416. }
  417. }
  418. // copy/pasted from https://github.com/docker/cli/blob/9de1b162f/cli/command/container/opts.go#L673-L697 + RelativePath
  419. // TODO find so way to share this code with docker/cli
  420. func parseSecurityOpts(p *types.Project, securityOpts []string) ([]string, bool, error) {
  421. var (
  422. unconfined bool
  423. parsed []string
  424. )
  425. for _, opt := range securityOpts {
  426. if opt == "systempaths=unconfined" {
  427. unconfined = true
  428. continue
  429. }
  430. con := strings.SplitN(opt, "=", 2)
  431. if len(con) == 1 && con[0] != "no-new-privileges" {
  432. if strings.Contains(opt, ":") {
  433. con = strings.SplitN(opt, ":", 2)
  434. } else {
  435. return securityOpts, false, fmt.Errorf("Invalid security-opt: %q", opt)
  436. }
  437. }
  438. if con[0] == "seccomp" && con[1] != "unconfined" {
  439. f, err := os.ReadFile(p.RelativePath(con[1]))
  440. if err != nil {
  441. return securityOpts, false, fmt.Errorf("opening seccomp profile (%s) failed: %w", con[1], err)
  442. }
  443. b := bytes.NewBuffer(nil)
  444. if err := json.Compact(b, f); err != nil {
  445. return securityOpts, false, fmt.Errorf("compacting json for seccomp profile (%s) failed: %w", con[1], err)
  446. }
  447. parsed = append(parsed, fmt.Sprintf("seccomp=%s", b.Bytes()))
  448. } else {
  449. parsed = append(parsed, opt)
  450. }
  451. }
  452. return parsed, unconfined, nil
  453. }
  454. func (s *composeService) prepareLabels(labels types.Labels, service types.ServiceConfig, number int) (map[string]string, error) {
  455. hash, err := ServiceHash(service)
  456. if err != nil {
  457. return nil, err
  458. }
  459. labels[api.ConfigHashLabel] = hash
  460. labels[api.ContainerNumberLabel] = strconv.Itoa(number)
  461. var dependencies []string
  462. for s, d := range service.DependsOn {
  463. dependencies = append(dependencies, fmt.Sprintf("%s:%s:%t", s, d.Condition, d.Restart))
  464. }
  465. labels[api.DependenciesLabel] = strings.Join(dependencies, ",")
  466. return labels, nil
  467. }
  468. // defaultNetworkSettings determines the container.NetworkMode and corresponding network.NetworkingConfig (nil if not applicable).
  469. func defaultNetworkSettings(
  470. project *types.Project,
  471. service types.ServiceConfig,
  472. serviceIndex int,
  473. links []string,
  474. useNetworkAliases bool,
  475. version string,
  476. ) (container.NetworkMode, *network.NetworkingConfig) {
  477. if service.NetworkMode != "" {
  478. return container.NetworkMode(service.NetworkMode), nil
  479. }
  480. if len(project.Networks) == 0 {
  481. return "none", nil
  482. }
  483. var primaryNetworkKey string
  484. if len(service.Networks) > 0 {
  485. primaryNetworkKey = service.NetworksByPriority()[0]
  486. } else {
  487. primaryNetworkKey = "default"
  488. }
  489. primaryNetworkMobyNetworkName := project.Networks[primaryNetworkKey].Name
  490. endpointsConfig := map[string]*network.EndpointSettings{
  491. primaryNetworkMobyNetworkName: createEndpointSettings(project, service, serviceIndex, primaryNetworkKey, links, useNetworkAliases),
  492. }
  493. // Starting from API version 1.44, the Engine will take several EndpointsConfigs
  494. // so we can pass all the extra networks we want the container to be connected to
  495. // in the network configuration instead of connecting the container to each extra
  496. // network individually after creation.
  497. if versions.GreaterThanOrEqualTo(version, "1.44") && len(service.Networks) > 1 {
  498. serviceNetworks := service.NetworksByPriority()
  499. for _, networkKey := range serviceNetworks[1:] {
  500. mobyNetworkName := project.Networks[networkKey].Name
  501. epSettings := createEndpointSettings(project, service, serviceIndex, networkKey, links, useNetworkAliases)
  502. endpointsConfig[mobyNetworkName] = epSettings
  503. }
  504. }
  505. networkConfig := &network.NetworkingConfig{
  506. EndpointsConfig: endpointsConfig,
  507. }
  508. // From the Engine API docs:
  509. // > Supported standard values are: bridge, host, none, and container:<name|id>.
  510. // > Any other value is taken as a custom network's name to which this container should connect to.
  511. return container.NetworkMode(primaryNetworkMobyNetworkName), networkConfig
  512. }
  513. func getRestartPolicy(service types.ServiceConfig) container.RestartPolicy {
  514. var restart container.RestartPolicy
  515. if service.Restart != "" {
  516. split := strings.Split(service.Restart, ":")
  517. var attempts int
  518. if len(split) > 1 {
  519. attempts, _ = strconv.Atoi(split[1])
  520. }
  521. restart = container.RestartPolicy{
  522. Name: mapRestartPolicyCondition(split[0]),
  523. MaximumRetryCount: attempts,
  524. }
  525. }
  526. if service.Deploy != nil && service.Deploy.RestartPolicy != nil {
  527. policy := *service.Deploy.RestartPolicy
  528. var attempts int
  529. if policy.MaxAttempts != nil {
  530. attempts = int(*policy.MaxAttempts)
  531. }
  532. restart = container.RestartPolicy{
  533. Name: mapRestartPolicyCondition(policy.Condition),
  534. MaximumRetryCount: attempts,
  535. }
  536. }
  537. return restart
  538. }
  539. func mapRestartPolicyCondition(condition string) container.RestartPolicyMode {
  540. // map definitions of deploy.restart_policy to engine definitions
  541. switch condition {
  542. case "none", "no":
  543. return container.RestartPolicyDisabled
  544. case "on-failure":
  545. return container.RestartPolicyOnFailure
  546. case "unless-stopped":
  547. return container.RestartPolicyUnlessStopped
  548. case "any", "always":
  549. return container.RestartPolicyAlways
  550. default:
  551. return container.RestartPolicyMode(condition)
  552. }
  553. }
  554. func getDeployResources(s types.ServiceConfig) container.Resources {
  555. var swappiness *int64
  556. if s.MemSwappiness != 0 {
  557. val := int64(s.MemSwappiness)
  558. swappiness = &val
  559. }
  560. resources := container.Resources{
  561. CgroupParent: s.CgroupParent,
  562. Memory: int64(s.MemLimit),
  563. MemorySwap: int64(s.MemSwapLimit),
  564. MemorySwappiness: swappiness,
  565. MemoryReservation: int64(s.MemReservation),
  566. OomKillDisable: &s.OomKillDisable,
  567. CPUCount: s.CPUCount,
  568. CPUPeriod: s.CPUPeriod,
  569. CPUQuota: s.CPUQuota,
  570. CPURealtimePeriod: s.CPURTPeriod,
  571. CPURealtimeRuntime: s.CPURTRuntime,
  572. CPUShares: s.CPUShares,
  573. NanoCPUs: int64(s.CPUS * 1e9),
  574. CPUPercent: int64(s.CPUPercent * 100),
  575. CpusetCpus: s.CPUSet,
  576. DeviceCgroupRules: s.DeviceCgroupRules,
  577. }
  578. if s.PidsLimit != 0 {
  579. resources.PidsLimit = &s.PidsLimit
  580. }
  581. setBlkio(s.BlkioConfig, &resources)
  582. if s.Deploy != nil {
  583. setLimits(s.Deploy.Resources.Limits, &resources)
  584. setReservations(s.Deploy.Resources.Reservations, &resources)
  585. }
  586. for _, device := range s.Devices {
  587. // FIXME should use docker/cli parseDevice, unfortunately private
  588. src := ""
  589. dst := ""
  590. permissions := "rwm"
  591. arr := strings.Split(device, ":")
  592. switch len(arr) {
  593. case 3:
  594. permissions = arr[2]
  595. fallthrough
  596. case 2:
  597. dst = arr[1]
  598. fallthrough
  599. case 1:
  600. src = arr[0]
  601. }
  602. if dst == "" {
  603. dst = src
  604. }
  605. resources.Devices = append(resources.Devices, container.DeviceMapping{
  606. PathOnHost: src,
  607. PathInContainer: dst,
  608. CgroupPermissions: permissions,
  609. })
  610. }
  611. ulimits := toUlimits(s.Ulimits)
  612. resources.Ulimits = ulimits
  613. return resources
  614. }
  615. func toUlimits(m map[string]*types.UlimitsConfig) []*container.Ulimit {
  616. var ulimits []*container.Ulimit
  617. for name, u := range m {
  618. soft := u.Single
  619. if u.Soft != 0 {
  620. soft = u.Soft
  621. }
  622. hard := u.Single
  623. if u.Hard != 0 {
  624. hard = u.Hard
  625. }
  626. ulimits = append(ulimits, &container.Ulimit{
  627. Name: name,
  628. Hard: int64(hard),
  629. Soft: int64(soft),
  630. })
  631. }
  632. return ulimits
  633. }
  634. func setReservations(reservations *types.Resource, resources *container.Resources) {
  635. if reservations == nil {
  636. return
  637. }
  638. // Cpu reservation is a swarm option and PIDs is only a limit
  639. // So we only need to map memory reservation and devices
  640. if reservations.MemoryBytes != 0 {
  641. resources.MemoryReservation = int64(reservations.MemoryBytes)
  642. }
  643. for _, device := range reservations.Devices {
  644. resources.DeviceRequests = append(resources.DeviceRequests, container.DeviceRequest{
  645. Capabilities: [][]string{device.Capabilities},
  646. Count: int(device.Count),
  647. DeviceIDs: device.IDs,
  648. Driver: device.Driver,
  649. })
  650. }
  651. }
  652. func setLimits(limits *types.Resource, resources *container.Resources) {
  653. if limits == nil {
  654. return
  655. }
  656. if limits.MemoryBytes != 0 {
  657. resources.Memory = int64(limits.MemoryBytes)
  658. }
  659. if limits.NanoCPUs != 0 {
  660. resources.NanoCPUs = int64(limits.NanoCPUs * 1e9)
  661. }
  662. if limits.Pids > 0 {
  663. resources.PidsLimit = &limits.Pids
  664. }
  665. }
  666. func setBlkio(blkio *types.BlkioConfig, resources *container.Resources) {
  667. if blkio == nil {
  668. return
  669. }
  670. resources.BlkioWeight = blkio.Weight
  671. for _, b := range blkio.WeightDevice {
  672. resources.BlkioWeightDevice = append(resources.BlkioWeightDevice, &blkiodev.WeightDevice{
  673. Path: b.Path,
  674. Weight: b.Weight,
  675. })
  676. }
  677. for _, b := range blkio.DeviceReadBps {
  678. resources.BlkioDeviceReadBps = append(resources.BlkioDeviceReadBps, &blkiodev.ThrottleDevice{
  679. Path: b.Path,
  680. Rate: uint64(b.Rate),
  681. })
  682. }
  683. for _, b := range blkio.DeviceReadIOps {
  684. resources.BlkioDeviceReadIOps = append(resources.BlkioDeviceReadIOps, &blkiodev.ThrottleDevice{
  685. Path: b.Path,
  686. Rate: uint64(b.Rate),
  687. })
  688. }
  689. for _, b := range blkio.DeviceWriteBps {
  690. resources.BlkioDeviceWriteBps = append(resources.BlkioDeviceWriteBps, &blkiodev.ThrottleDevice{
  691. Path: b.Path,
  692. Rate: uint64(b.Rate),
  693. })
  694. }
  695. for _, b := range blkio.DeviceWriteIOps {
  696. resources.BlkioDeviceWriteIOps = append(resources.BlkioDeviceWriteIOps, &blkiodev.ThrottleDevice{
  697. Path: b.Path,
  698. Rate: uint64(b.Rate),
  699. })
  700. }
  701. }
  702. func buildContainerPorts(s types.ServiceConfig) nat.PortSet {
  703. ports := nat.PortSet{}
  704. for _, s := range s.Expose {
  705. p := nat.Port(s)
  706. ports[p] = struct{}{}
  707. }
  708. for _, p := range s.Ports {
  709. p := nat.Port(fmt.Sprintf("%d/%s", p.Target, p.Protocol))
  710. ports[p] = struct{}{}
  711. }
  712. return ports
  713. }
  714. func buildContainerPortBindingOptions(s types.ServiceConfig) nat.PortMap {
  715. bindings := nat.PortMap{}
  716. for _, port := range s.Ports {
  717. p := nat.Port(fmt.Sprintf("%d/%s", port.Target, port.Protocol))
  718. binding := nat.PortBinding{
  719. HostIP: port.HostIP,
  720. HostPort: port.Published,
  721. }
  722. bindings[p] = append(bindings[p], binding)
  723. }
  724. return bindings
  725. }
  726. func getDependentServiceFromMode(mode string) string {
  727. if strings.HasPrefix(
  728. mode,
  729. types.NetworkModeServicePrefix,
  730. ) {
  731. return mode[len(types.NetworkModeServicePrefix):]
  732. }
  733. return ""
  734. }
  735. func (s *composeService) buildContainerVolumes(
  736. ctx context.Context,
  737. p types.Project,
  738. service types.ServiceConfig,
  739. inherit *moby.Container,
  740. ) ([]string, []mount.Mount, error) {
  741. var mounts []mount.Mount
  742. var binds []string
  743. image := api.GetImageNameOrDefault(service, p.Name)
  744. imgInspect, _, err := s.apiClient().ImageInspectWithRaw(ctx, image)
  745. if err != nil {
  746. return nil, nil, err
  747. }
  748. mountOptions, err := buildContainerMountOptions(p, service, imgInspect, inherit)
  749. if err != nil {
  750. return nil, nil, err
  751. }
  752. version, err := s.RuntimeVersion(ctx)
  753. if err != nil {
  754. return nil, nil, err
  755. }
  756. if versions.GreaterThan(version, "1.42") {
  757. // We can fully leverage `Mount` API as a replacement for legacy `Bind`
  758. return nil, mountOptions, nil
  759. }
  760. MOUNTS:
  761. for _, m := range mountOptions {
  762. if m.Type == mount.TypeBind {
  763. // `Mount` does not offer option to created host path if missing
  764. // so `Bind` API is used here with raw volume string
  765. for _, v := range service.Volumes {
  766. if v.Target == m.Target {
  767. if v.Bind != nil && v.Bind.CreateHostPath {
  768. binds = append(binds, v.String())
  769. continue MOUNTS
  770. }
  771. }
  772. }
  773. }
  774. mounts = append(mounts, m)
  775. }
  776. return binds, mounts, nil
  777. }
  778. func buildContainerMountOptions(p types.Project, s types.ServiceConfig, img moby.ImageInspect, inherit *moby.Container) ([]mount.Mount, error) {
  779. var mounts = map[string]mount.Mount{}
  780. if inherit != nil {
  781. for _, m := range inherit.Mounts {
  782. if m.Type == "tmpfs" {
  783. continue
  784. }
  785. src := m.Source
  786. if m.Type == "volume" {
  787. src = m.Name
  788. }
  789. m.Destination = path.Clean(m.Destination)
  790. if img.Config != nil {
  791. if _, ok := img.Config.Volumes[m.Destination]; ok {
  792. // inherit previous container's anonymous volume
  793. mounts[m.Destination] = mount.Mount{
  794. Type: m.Type,
  795. Source: src,
  796. Target: m.Destination,
  797. ReadOnly: !m.RW,
  798. }
  799. }
  800. }
  801. volumes := []types.ServiceVolumeConfig{}
  802. for _, v := range s.Volumes {
  803. if v.Target != m.Destination || v.Source != "" {
  804. volumes = append(volumes, v)
  805. continue
  806. }
  807. // inherit previous container's anonymous volume
  808. mounts[m.Destination] = mount.Mount{
  809. Type: m.Type,
  810. Source: src,
  811. Target: m.Destination,
  812. ReadOnly: !m.RW,
  813. }
  814. }
  815. s.Volumes = volumes
  816. }
  817. }
  818. mounts, err := fillBindMounts(p, s, mounts)
  819. if err != nil {
  820. return nil, err
  821. }
  822. values := make([]mount.Mount, 0, len(mounts))
  823. for _, v := range mounts {
  824. values = append(values, v)
  825. }
  826. return values, nil
  827. }
  828. func fillBindMounts(p types.Project, s types.ServiceConfig, m map[string]mount.Mount) (map[string]mount.Mount, error) {
  829. for _, v := range s.Volumes {
  830. bindMount, err := buildMount(p, v)
  831. if err != nil {
  832. return nil, err
  833. }
  834. m[bindMount.Target] = bindMount
  835. }
  836. secrets, err := buildContainerSecretMounts(p, s)
  837. if err != nil {
  838. return nil, err
  839. }
  840. for _, s := range secrets {
  841. if _, found := m[s.Target]; found {
  842. continue
  843. }
  844. m[s.Target] = s
  845. }
  846. configs, err := buildContainerConfigMounts(p, s)
  847. if err != nil {
  848. return nil, err
  849. }
  850. for _, c := range configs {
  851. if _, found := m[c.Target]; found {
  852. continue
  853. }
  854. m[c.Target] = c
  855. }
  856. return m, nil
  857. }
  858. func buildContainerConfigMounts(p types.Project, s types.ServiceConfig) ([]mount.Mount, error) {
  859. var mounts = map[string]mount.Mount{}
  860. configsBaseDir := "/"
  861. for _, config := range s.Configs {
  862. target := config.Target
  863. if config.Target == "" {
  864. target = configsBaseDir + config.Source
  865. } else if !isAbsTarget(config.Target) {
  866. target = configsBaseDir + config.Target
  867. }
  868. if config.UID != "" || config.GID != "" || config.Mode != nil {
  869. logrus.Warn("config `uid`, `gid` and `mode` are not supported, they will be ignored")
  870. }
  871. definedConfig := p.Configs[config.Source]
  872. if definedConfig.External {
  873. return nil, fmt.Errorf("unsupported external config %s", definedConfig.Name)
  874. }
  875. if definedConfig.Driver != "" {
  876. return nil, errors.New("Docker Compose does not support configs.*.driver")
  877. }
  878. if definedConfig.TemplateDriver != "" {
  879. return nil, errors.New("Docker Compose does not support configs.*.template_driver")
  880. }
  881. if definedConfig.Environment != "" || definedConfig.Content != "" {
  882. continue
  883. }
  884. bindMount, err := buildMount(p, types.ServiceVolumeConfig{
  885. Type: types.VolumeTypeBind,
  886. Source: definedConfig.File,
  887. Target: target,
  888. ReadOnly: true,
  889. })
  890. if err != nil {
  891. return nil, err
  892. }
  893. mounts[target] = bindMount
  894. }
  895. values := make([]mount.Mount, 0, len(mounts))
  896. for _, v := range mounts {
  897. values = append(values, v)
  898. }
  899. return values, nil
  900. }
  901. func buildContainerSecretMounts(p types.Project, s types.ServiceConfig) ([]mount.Mount, error) {
  902. var mounts = map[string]mount.Mount{}
  903. secretsDir := "/run/secrets/"
  904. for _, secret := range s.Secrets {
  905. target := secret.Target
  906. if secret.Target == "" {
  907. target = secretsDir + secret.Source
  908. } else if !isAbsTarget(secret.Target) {
  909. target = secretsDir + secret.Target
  910. }
  911. if secret.UID != "" || secret.GID != "" || secret.Mode != nil {
  912. logrus.Warn("secrets `uid`, `gid` and `mode` are not supported, they will be ignored")
  913. }
  914. definedSecret := p.Secrets[secret.Source]
  915. if definedSecret.External {
  916. return nil, fmt.Errorf("unsupported external secret %s", definedSecret.Name)
  917. }
  918. if definedSecret.Driver != "" {
  919. return nil, errors.New("Docker Compose does not support secrets.*.driver")
  920. }
  921. if definedSecret.TemplateDriver != "" {
  922. return nil, errors.New("Docker Compose does not support secrets.*.template_driver")
  923. }
  924. if definedSecret.Environment != "" {
  925. continue
  926. }
  927. mnt, err := buildMount(p, types.ServiceVolumeConfig{
  928. Type: types.VolumeTypeBind,
  929. Source: definedSecret.File,
  930. Target: target,
  931. ReadOnly: true,
  932. })
  933. if err != nil {
  934. return nil, err
  935. }
  936. mounts[target] = mnt
  937. }
  938. values := make([]mount.Mount, 0, len(mounts))
  939. for _, v := range mounts {
  940. values = append(values, v)
  941. }
  942. return values, nil
  943. }
  944. func isAbsTarget(p string) bool {
  945. return isUnixAbs(p) || isWindowsAbs(p)
  946. }
  947. func isUnixAbs(p string) bool {
  948. return strings.HasPrefix(p, "/")
  949. }
  950. func isWindowsAbs(p string) bool {
  951. if strings.HasPrefix(p, "\\\\") {
  952. return true
  953. }
  954. if len(p) > 2 && p[1] == ':' {
  955. return p[2] == '\\'
  956. }
  957. return false
  958. }
  959. func buildMount(project types.Project, volume types.ServiceVolumeConfig) (mount.Mount, error) {
  960. source := volume.Source
  961. // on windows, filepath.IsAbs(source) is false for unix style abs path like /var/run/docker.sock.
  962. // do not replace these with filepath.Abs(source) that will include a default drive.
  963. if volume.Type == types.VolumeTypeBind && !filepath.IsAbs(source) && !strings.HasPrefix(source, "/") {
  964. // volume source has already been prefixed with workdir if required, by compose-go project loader
  965. var err error
  966. source, err = filepath.Abs(source)
  967. if err != nil {
  968. return mount.Mount{}, err
  969. }
  970. }
  971. if volume.Type == types.VolumeTypeVolume {
  972. if volume.Source != "" {
  973. pVolume, ok := project.Volumes[volume.Source]
  974. if ok {
  975. source = pVolume.Name
  976. }
  977. }
  978. }
  979. bind, vol, tmpfs := buildMountOptions(volume)
  980. volume.Target = path.Clean(volume.Target)
  981. if bind != nil {
  982. volume.Type = types.VolumeTypeBind
  983. }
  984. return mount.Mount{
  985. Type: mount.Type(volume.Type),
  986. Source: source,
  987. Target: volume.Target,
  988. ReadOnly: volume.ReadOnly,
  989. Consistency: mount.Consistency(volume.Consistency),
  990. BindOptions: bind,
  991. VolumeOptions: vol,
  992. TmpfsOptions: tmpfs,
  993. }, nil
  994. }
  995. func buildMountOptions(volume types.ServiceVolumeConfig) (*mount.BindOptions, *mount.VolumeOptions, *mount.TmpfsOptions) {
  996. switch volume.Type {
  997. case "bind":
  998. if volume.Volume != nil {
  999. logrus.Warnf("mount of type `bind` should not define `volume` option")
  1000. }
  1001. if volume.Tmpfs != nil {
  1002. logrus.Warnf("mount of type `bind` should not define `tmpfs` option")
  1003. }
  1004. return buildBindOption(volume.Bind), nil, nil
  1005. case "volume":
  1006. if volume.Bind != nil {
  1007. logrus.Warnf("mount of type `volume` should not define `bind` option")
  1008. }
  1009. if volume.Tmpfs != nil {
  1010. logrus.Warnf("mount of type `volume` should not define `tmpfs` option")
  1011. }
  1012. return nil, buildVolumeOptions(volume.Volume), nil
  1013. case "tmpfs":
  1014. if volume.Bind != nil {
  1015. logrus.Warnf("mount of type `tmpfs` should not define `bind` option")
  1016. }
  1017. if volume.Volume != nil {
  1018. logrus.Warnf("mount of type `tmpfs` should not define `volume` option")
  1019. }
  1020. return nil, nil, buildTmpfsOptions(volume.Tmpfs)
  1021. }
  1022. return nil, nil, nil
  1023. }
  1024. func buildBindOption(bind *types.ServiceVolumeBind) *mount.BindOptions {
  1025. if bind == nil {
  1026. return nil
  1027. }
  1028. return &mount.BindOptions{
  1029. Propagation: mount.Propagation(bind.Propagation),
  1030. CreateMountpoint: bind.CreateHostPath,
  1031. // NonRecursive: false, FIXME missing from model ?
  1032. }
  1033. }
  1034. func buildVolumeOptions(vol *types.ServiceVolumeVolume) *mount.VolumeOptions {
  1035. if vol == nil {
  1036. return nil
  1037. }
  1038. return &mount.VolumeOptions{
  1039. NoCopy: vol.NoCopy,
  1040. Subpath: vol.Subpath,
  1041. // Labels: , // FIXME missing from model ?
  1042. // DriverConfig: , // FIXME missing from model ?
  1043. }
  1044. }
  1045. func buildTmpfsOptions(tmpfs *types.ServiceVolumeTmpfs) *mount.TmpfsOptions {
  1046. if tmpfs == nil {
  1047. return nil
  1048. }
  1049. return &mount.TmpfsOptions{
  1050. SizeBytes: int64(tmpfs.Size),
  1051. Mode: os.FileMode(tmpfs.Mode),
  1052. }
  1053. }
  1054. func (s *composeService) ensureNetwork(ctx context.Context, n *types.NetworkConfig) error {
  1055. if n.External {
  1056. return s.resolveExternalNetwork(ctx, n)
  1057. }
  1058. err := s.resolveOrCreateNetwork(ctx, n)
  1059. if errdefs.IsConflict(err) {
  1060. // Maybe another execution of `docker compose up|run` created same network
  1061. // let's retry once
  1062. return s.resolveOrCreateNetwork(ctx, n)
  1063. }
  1064. return err
  1065. }
  1066. func (s *composeService) resolveOrCreateNetwork(ctx context.Context, n *types.NetworkConfig) error { //nolint:gocyclo
  1067. expectedNetworkLabel := n.Labels[api.NetworkLabel]
  1068. expectedProjectLabel := n.Labels[api.ProjectLabel]
  1069. // First, try to find a unique network matching by name or ID
  1070. inspect, err := s.apiClient().NetworkInspect(ctx, n.Name, network.InspectOptions{})
  1071. if err == nil {
  1072. // NetworkInspect will match on ID prefix, so double check we get the expected one
  1073. // as looking for network named `db` we could erroneously matched network ID `db9086999caf`
  1074. if inspect.Name == n.Name || inspect.ID == n.Name {
  1075. p, ok := inspect.Labels[api.ProjectLabel]
  1076. if !ok {
  1077. logrus.Warnf("a network with name %s exists but was not created by compose.\n"+
  1078. "Set `external: true` to use an existing network", n.Name)
  1079. } else if p != expectedProjectLabel {
  1080. logrus.Warnf("a network with name %s exists but was not created for project %q.\n"+
  1081. "Set `external: true` to use an existing network", n.Name, expectedProjectLabel)
  1082. }
  1083. if inspect.Labels[api.NetworkLabel] != expectedNetworkLabel {
  1084. return fmt.Errorf("network %s was found but has incorrect label %s set to %q", n.Name, api.NetworkLabel, inspect.Labels[api.NetworkLabel])
  1085. }
  1086. return nil
  1087. }
  1088. }
  1089. // ignore other errors. Typically, an ambiguous request by name results in some generic `invalidParameter` error
  1090. // Either not found, or name is ambiguous - use NetworkList to list by name
  1091. networks, err := s.apiClient().NetworkList(ctx, network.ListOptions{
  1092. Filters: filters.NewArgs(filters.Arg("name", n.Name)),
  1093. })
  1094. if err != nil {
  1095. return err
  1096. }
  1097. // NetworkList Matches all or part of a network name, so we have to filter for a strict match
  1098. networks = utils.Filter(networks, func(net network.Summary) bool {
  1099. return net.Name == n.Name
  1100. })
  1101. for _, net := range networks {
  1102. if net.Labels[api.ProjectLabel] == expectedProjectLabel &&
  1103. net.Labels[api.NetworkLabel] == expectedNetworkLabel {
  1104. return nil
  1105. }
  1106. }
  1107. // we could have set NetworkList with a projectFilter and networkFilter but not doing so allows to catch this
  1108. // scenario were a network with same name exists but doesn't have label, and use of `CheckDuplicate: true`
  1109. // prevents to create another one.
  1110. if len(networks) > 0 {
  1111. logrus.Warnf("a network with name %s exists but was not created by compose.\n"+
  1112. "Set `external: true` to use an existing network", n.Name)
  1113. return nil
  1114. }
  1115. var ipam *network.IPAM
  1116. if n.Ipam.Config != nil {
  1117. var config []network.IPAMConfig
  1118. for _, pool := range n.Ipam.Config {
  1119. config = append(config, network.IPAMConfig{
  1120. Subnet: pool.Subnet,
  1121. IPRange: pool.IPRange,
  1122. Gateway: pool.Gateway,
  1123. AuxAddress: pool.AuxiliaryAddresses,
  1124. })
  1125. }
  1126. ipam = &network.IPAM{
  1127. Driver: n.Ipam.Driver,
  1128. Config: config,
  1129. }
  1130. }
  1131. createOpts := network.CreateOptions{
  1132. Labels: n.Labels,
  1133. Driver: n.Driver,
  1134. Options: n.DriverOpts,
  1135. Internal: n.Internal,
  1136. Attachable: n.Attachable,
  1137. IPAM: ipam,
  1138. EnableIPv6: n.EnableIPv6,
  1139. }
  1140. if n.Ipam.Driver != "" || len(n.Ipam.Config) > 0 {
  1141. createOpts.IPAM = &network.IPAM{}
  1142. }
  1143. if n.Ipam.Driver != "" {
  1144. createOpts.IPAM.Driver = n.Ipam.Driver
  1145. }
  1146. for _, ipamConfig := range n.Ipam.Config {
  1147. config := network.IPAMConfig{
  1148. Subnet: ipamConfig.Subnet,
  1149. IPRange: ipamConfig.IPRange,
  1150. Gateway: ipamConfig.Gateway,
  1151. AuxAddress: ipamConfig.AuxiliaryAddresses,
  1152. }
  1153. createOpts.IPAM.Config = append(createOpts.IPAM.Config, config)
  1154. }
  1155. networkEventName := fmt.Sprintf("Network %s", n.Name)
  1156. w := progress.ContextWriter(ctx)
  1157. w.Event(progress.CreatingEvent(networkEventName))
  1158. _, err = s.apiClient().NetworkCreate(ctx, n.Name, createOpts)
  1159. if err != nil {
  1160. w.Event(progress.ErrorEvent(networkEventName))
  1161. return fmt.Errorf("failed to create network %s: %w", n.Name, err)
  1162. }
  1163. w.Event(progress.CreatedEvent(networkEventName))
  1164. return nil
  1165. }
  1166. func (s *composeService) resolveExternalNetwork(ctx context.Context, n *types.NetworkConfig) error {
  1167. // NetworkInspect will match on ID prefix, so NetworkList with a name
  1168. // filter is used to look for an exact match to prevent e.g. a network
  1169. // named `db` from getting erroneously matched to a network with an ID
  1170. // like `db9086999caf`
  1171. networks, err := s.apiClient().NetworkList(ctx, network.ListOptions{
  1172. Filters: filters.NewArgs(filters.Arg("name", n.Name)),
  1173. })
  1174. if err != nil {
  1175. return err
  1176. }
  1177. if len(networks) == 0 {
  1178. // in this instance, n.Name is really an ID
  1179. sn, err := s.apiClient().NetworkInspect(ctx, n.Name, network.InspectOptions{})
  1180. if err != nil && !errdefs.IsNotFound(err) {
  1181. return err
  1182. }
  1183. networks = append(networks, sn)
  1184. }
  1185. // NetworkList API doesn't return the exact name match, so we can retrieve more than one network with a request
  1186. networks = utils.Filter(networks, func(net network.Inspect) bool {
  1187. // later in this function, the name is changed the to ID.
  1188. // this function is called during the rebuild stage of `compose watch`.
  1189. // we still require just one network back, but we need to run the search on the ID
  1190. return net.Name == n.Name || net.ID == n.Name
  1191. })
  1192. switch len(networks) {
  1193. case 1:
  1194. n.Name = networks[0].ID
  1195. return nil
  1196. case 0:
  1197. enabled, err := s.isSWarmEnabled(ctx)
  1198. if err != nil {
  1199. return err
  1200. }
  1201. if enabled {
  1202. // Swarm nodes do not register overlay networks that were
  1203. // created on a different node unless they're in use.
  1204. // So we can't preemptively check network exists, but
  1205. // networkAttach will later fail anyway if network actually doesn't exists
  1206. return nil
  1207. }
  1208. return fmt.Errorf("network %s declared as external, but could not be found", n.Name)
  1209. default:
  1210. return fmt.Errorf("multiple networks with name %q were found. Use network ID as `name` to avoid ambiguity", n.Name)
  1211. }
  1212. }
  1213. func (s *composeService) ensureVolume(ctx context.Context, volume types.VolumeConfig, project string) error {
  1214. inspected, err := s.apiClient().VolumeInspect(ctx, volume.Name)
  1215. if err != nil {
  1216. if !errdefs.IsNotFound(err) {
  1217. return err
  1218. }
  1219. if volume.External {
  1220. return fmt.Errorf("external volume %q not found", volume.Name)
  1221. }
  1222. err := s.createVolume(ctx, volume)
  1223. return err
  1224. }
  1225. if volume.External {
  1226. return nil
  1227. }
  1228. // Volume exists with name, but let's double-check this is the expected one
  1229. p, ok := inspected.Labels[api.ProjectLabel]
  1230. if !ok {
  1231. logrus.Warnf("volume %q already exists but was not created by Docker Compose. Use `external: true` to use an existing volume", volume.Name)
  1232. }
  1233. if ok && p != project {
  1234. logrus.Warnf("volume %q already exists but was created for project %q (expected %q). Use `external: true` to use an existing volume", volume.Name, p, project)
  1235. }
  1236. return nil
  1237. }
  1238. func (s *composeService) createVolume(ctx context.Context, volume types.VolumeConfig) error {
  1239. eventName := fmt.Sprintf("Volume %q", volume.Name)
  1240. w := progress.ContextWriter(ctx)
  1241. w.Event(progress.CreatingEvent(eventName))
  1242. _, err := s.apiClient().VolumeCreate(ctx, volumetypes.CreateOptions{
  1243. Labels: volume.Labels,
  1244. Name: volume.Name,
  1245. Driver: volume.Driver,
  1246. DriverOpts: volume.DriverOpts,
  1247. })
  1248. if err != nil {
  1249. w.Event(progress.ErrorEvent(eventName))
  1250. return err
  1251. }
  1252. w.Event(progress.CreatedEvent(eventName))
  1253. return nil
  1254. }