service.py 48 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462
  1. from __future__ import absolute_import
  2. from __future__ import unicode_literals
  3. import logging
  4. import os
  5. import re
  6. import sys
  7. from collections import namedtuple
  8. from operator import attrgetter
  9. import enum
  10. import six
  11. from docker.errors import APIError
  12. from docker.errors import ImageNotFound
  13. from docker.errors import NotFound
  14. from docker.types import LogConfig
  15. from docker.types import Mount
  16. from docker.utils import version_gte
  17. from docker.utils import version_lt
  18. from docker.utils.ports import build_port_bindings
  19. from docker.utils.ports import split_port
  20. from docker.utils.utils import convert_tmpfs_mounts
  21. from . import __version__
  22. from . import const
  23. from . import progress_stream
  24. from .config import DOCKER_CONFIG_KEYS
  25. from .config import merge_environment
  26. from .config import merge_labels
  27. from .config.errors import DependencyError
  28. from .config.types import MountSpec
  29. from .config.types import ServicePort
  30. from .config.types import VolumeSpec
  31. from .const import DEFAULT_TIMEOUT
  32. from .const import IS_WINDOWS_PLATFORM
  33. from .const import LABEL_CONFIG_HASH
  34. from .const import LABEL_CONTAINER_NUMBER
  35. from .const import LABEL_ONE_OFF
  36. from .const import LABEL_PROJECT
  37. from .const import LABEL_SERVICE
  38. from .const import LABEL_VERSION
  39. from .const import NANOCPUS_SCALE
  40. from .container import Container
  41. from .errors import HealthCheckFailed
  42. from .errors import NoHealthCheckConfigured
  43. from .errors import OperationFailedError
  44. from .parallel import parallel_execute
  45. from .progress_stream import stream_output
  46. from .progress_stream import StreamOutputError
  47. from .utils import json_hash
  48. from .utils import parse_bytes
  49. from .utils import parse_seconds_float
  50. log = logging.getLogger(__name__)
  51. HOST_CONFIG_KEYS = [
  52. 'cap_add',
  53. 'cap_drop',
  54. 'cgroup_parent',
  55. 'cpu_count',
  56. 'cpu_percent',
  57. 'cpu_quota',
  58. 'cpu_shares',
  59. 'cpus',
  60. 'cpuset',
  61. 'devices',
  62. 'dns',
  63. 'dns_search',
  64. 'dns_opt',
  65. 'env_file',
  66. 'extra_hosts',
  67. 'group_add',
  68. 'init',
  69. 'ipc',
  70. 'read_only',
  71. 'log_driver',
  72. 'log_opt',
  73. 'mem_limit',
  74. 'mem_reservation',
  75. 'memswap_limit',
  76. 'mem_swappiness',
  77. 'oom_kill_disable',
  78. 'oom_score_adj',
  79. 'pid',
  80. 'pids_limit',
  81. 'privileged',
  82. 'restart',
  83. 'security_opt',
  84. 'shm_size',
  85. 'storage_opt',
  86. 'sysctls',
  87. 'userns_mode',
  88. 'volumes_from',
  89. 'volume_driver',
  90. ]
  91. CONDITION_STARTED = 'service_started'
  92. CONDITION_HEALTHY = 'service_healthy'
  93. class BuildError(Exception):
  94. def __init__(self, service, reason):
  95. self.service = service
  96. self.reason = reason
  97. class NeedsBuildError(Exception):
  98. def __init__(self, service):
  99. self.service = service
  100. class NoSuchImageError(Exception):
  101. pass
  102. ServiceName = namedtuple('ServiceName', 'project service number')
  103. ConvergencePlan = namedtuple('ConvergencePlan', 'action containers')
  104. @enum.unique
  105. class ConvergenceStrategy(enum.Enum):
  106. """Enumeration for all possible convergence strategies. Values refer to
  107. when containers should be recreated.
  108. """
  109. changed = 1
  110. always = 2
  111. never = 3
  112. @property
  113. def allows_recreate(self):
  114. return self is not type(self).never
  115. @enum.unique
  116. class ImageType(enum.Enum):
  117. """Enumeration for the types of images known to compose."""
  118. none = 0
  119. local = 1
  120. all = 2
  121. @enum.unique
  122. class BuildAction(enum.Enum):
  123. """Enumeration for the possible build actions."""
  124. none = 0
  125. force = 1
  126. skip = 2
  127. class Service(object):
  128. def __init__(
  129. self,
  130. name,
  131. client=None,
  132. project='default',
  133. use_networking=False,
  134. links=None,
  135. volumes_from=None,
  136. network_mode=None,
  137. networks=None,
  138. secrets=None,
  139. scale=None,
  140. pid_mode=None,
  141. **options
  142. ):
  143. self.name = name
  144. self.client = client
  145. self.project = project
  146. self.use_networking = use_networking
  147. self.links = links or []
  148. self.volumes_from = volumes_from or []
  149. self.network_mode = network_mode or NetworkMode(None)
  150. self.pid_mode = pid_mode or PidMode(None)
  151. self.networks = networks or {}
  152. self.secrets = secrets or []
  153. self.scale_num = scale or 1
  154. self.options = options
  155. def __repr__(self):
  156. return '<Service: {}>'.format(self.name)
  157. def containers(self, stopped=False, one_off=False, filters={}):
  158. filters.update({'label': self.labels(one_off=one_off)})
  159. return list(filter(None, [
  160. Container.from_ps(self.client, container)
  161. for container in self.client.containers(
  162. all=stopped,
  163. filters=filters)]))
  164. def get_container(self, number=1):
  165. """Return a :class:`compose.container.Container` for this service. The
  166. container must be active, and match `number`.
  167. """
  168. labels = self.labels() + ['{0}={1}'.format(LABEL_CONTAINER_NUMBER, number)]
  169. for container in self.client.containers(filters={'label': labels}):
  170. return Container.from_ps(self.client, container)
  171. raise ValueError("No container found for %s_%s" % (self.name, number))
  172. def start(self, **options):
  173. containers = self.containers(stopped=True)
  174. for c in containers:
  175. self.start_container_if_stopped(c, **options)
  176. return containers
  177. def show_scale_warnings(self, desired_num):
  178. if self.custom_container_name and desired_num > 1:
  179. log.warn('The "%s" service is using the custom container name "%s". '
  180. 'Docker requires each container to have a unique name. '
  181. 'Remove the custom name to scale the service.'
  182. % (self.name, self.custom_container_name))
  183. if self.specifies_host_port() and desired_num > 1:
  184. log.warn('The "%s" service specifies a port on the host. If multiple containers '
  185. 'for this service are created on a single host, the port will clash.'
  186. % self.name)
  187. def scale(self, desired_num, timeout=None):
  188. """
  189. Adjusts the number of containers to the specified number and ensures
  190. they are running.
  191. - creates containers until there are at least `desired_num`
  192. - stops containers until there are at most `desired_num` running
  193. - starts containers until there are at least `desired_num` running
  194. - removes all stopped containers
  195. """
  196. self.show_scale_warnings(desired_num)
  197. running_containers = self.containers(stopped=False)
  198. num_running = len(running_containers)
  199. if desired_num == num_running:
  200. # do nothing as we already have the desired number
  201. log.info('Desired container number already achieved')
  202. return
  203. if desired_num > num_running:
  204. all_containers = self.containers(stopped=True)
  205. if num_running != len(all_containers):
  206. # we have some stopped containers, check for divergences
  207. stopped_containers = [
  208. c for c in all_containers if not c.is_running
  209. ]
  210. # Remove containers that have diverged
  211. divergent_containers = [
  212. c for c in stopped_containers if self._containers_have_diverged([c])
  213. ]
  214. for c in divergent_containers:
  215. c.remove()
  216. all_containers = list(set(all_containers) - set(divergent_containers))
  217. sorted_containers = sorted(all_containers, key=attrgetter('number'))
  218. self._execute_convergence_start(
  219. sorted_containers, desired_num, timeout, True, True
  220. )
  221. if desired_num < num_running:
  222. num_to_stop = num_running - desired_num
  223. sorted_running_containers = sorted(
  224. running_containers,
  225. key=attrgetter('number'))
  226. self._downscale(sorted_running_containers[-num_to_stop:], timeout)
  227. def create_container(self,
  228. one_off=False,
  229. previous_container=None,
  230. number=None,
  231. quiet=False,
  232. **override_options):
  233. """
  234. Create a container for this service. If the image doesn't exist, attempt to pull
  235. it.
  236. """
  237. # This is only necessary for `scale` and `volumes_from`
  238. # auto-creating containers to satisfy the dependency.
  239. self.ensure_image_exists()
  240. container_options = self._get_container_create_options(
  241. override_options,
  242. number or self._next_container_number(one_off=one_off),
  243. one_off=one_off,
  244. previous_container=previous_container,
  245. )
  246. if 'name' in container_options and not quiet:
  247. log.info("Creating %s" % container_options['name'])
  248. try:
  249. return Container.create(self.client, **container_options)
  250. except APIError as ex:
  251. raise OperationFailedError("Cannot create container for service %s: %s" %
  252. (self.name, ex.explanation))
  253. def ensure_image_exists(self, do_build=BuildAction.none):
  254. if self.can_be_built() and do_build == BuildAction.force:
  255. self.build()
  256. return
  257. try:
  258. self.image()
  259. return
  260. except NoSuchImageError:
  261. pass
  262. if not self.can_be_built():
  263. self.pull()
  264. return
  265. if do_build == BuildAction.skip:
  266. raise NeedsBuildError(self)
  267. self.build()
  268. log.warn(
  269. "Image for service {} was built because it did not already exist. To "
  270. "rebuild this image you must use `docker-compose build` or "
  271. "`docker-compose up --build`.".format(self.name))
  272. def image(self):
  273. try:
  274. return self.client.inspect_image(self.image_name)
  275. except ImageNotFound:
  276. raise NoSuchImageError("Image '{}' not found".format(self.image_name))
  277. @property
  278. def image_name(self):
  279. return self.options.get('image', '{s.project}_{s.name}'.format(s=self))
  280. def convergence_plan(self, strategy=ConvergenceStrategy.changed):
  281. containers = self.containers(stopped=True)
  282. if not containers:
  283. return ConvergencePlan('create', [])
  284. if strategy is ConvergenceStrategy.never:
  285. return ConvergencePlan('start', containers)
  286. if (
  287. strategy is ConvergenceStrategy.always or
  288. self._containers_have_diverged(containers)
  289. ):
  290. return ConvergencePlan('recreate', containers)
  291. stopped = [c for c in containers if not c.is_running]
  292. if stopped:
  293. return ConvergencePlan('start', stopped)
  294. return ConvergencePlan('noop', containers)
  295. def _containers_have_diverged(self, containers):
  296. config_hash = None
  297. try:
  298. config_hash = self.config_hash
  299. except NoSuchImageError as e:
  300. log.debug(
  301. 'Service %s has diverged: %s',
  302. self.name, six.text_type(e),
  303. )
  304. return True
  305. has_diverged = False
  306. for c in containers:
  307. container_config_hash = c.labels.get(LABEL_CONFIG_HASH, None)
  308. if container_config_hash != config_hash:
  309. log.debug(
  310. '%s has diverged: %s != %s',
  311. c.name, container_config_hash, config_hash,
  312. )
  313. has_diverged = True
  314. return has_diverged
  315. def _execute_convergence_create(self, scale, detached, start, project_services=None):
  316. i = self._next_container_number()
  317. def create_and_start(service, n):
  318. container = service.create_container(number=n, quiet=True)
  319. if not detached:
  320. container.attach_log_stream()
  321. if start:
  322. self.start_container(container)
  323. return container
  324. containers, errors = parallel_execute(
  325. [ServiceName(self.project, self.name, index) for index in range(i, i + scale)],
  326. lambda service_name: create_and_start(self, service_name.number),
  327. lambda service_name: self.get_container_name(service_name.service, service_name.number),
  328. "Creating",
  329. parent_objects=project_services
  330. )
  331. for error in errors.values():
  332. raise OperationFailedError(error)
  333. return containers
  334. def _execute_convergence_recreate(self, containers, scale, timeout, detached, start):
  335. if scale is not None and len(containers) > scale:
  336. self._downscale(containers[scale:], timeout)
  337. containers = containers[:scale]
  338. def recreate(container):
  339. return self.recreate_container(
  340. container, timeout=timeout, attach_logs=not detached,
  341. start_new_container=start
  342. )
  343. containers, errors = parallel_execute(
  344. containers,
  345. recreate,
  346. lambda c: c.name,
  347. "Recreating",
  348. )
  349. for error in errors.values():
  350. raise OperationFailedError(error)
  351. if scale is not None and len(containers) < scale:
  352. containers.extend(self._execute_convergence_create(
  353. scale - len(containers), detached, start
  354. ))
  355. return containers
  356. def _execute_convergence_start(self, containers, scale, timeout, detached, start):
  357. if scale is not None and len(containers) > scale:
  358. self._downscale(containers[scale:], timeout)
  359. containers = containers[:scale]
  360. if start:
  361. _, errors = parallel_execute(
  362. containers,
  363. lambda c: self.start_container_if_stopped(c, attach_logs=not detached, quiet=True),
  364. lambda c: c.name,
  365. "Starting",
  366. )
  367. for error in errors.values():
  368. raise OperationFailedError(error)
  369. if scale is not None and len(containers) < scale:
  370. containers.extend(self._execute_convergence_create(
  371. scale - len(containers), detached, start
  372. ))
  373. return containers
  374. def _downscale(self, containers, timeout=None):
  375. def stop_and_remove(container):
  376. container.stop(timeout=self.stop_timeout(timeout))
  377. container.remove()
  378. parallel_execute(
  379. containers,
  380. stop_and_remove,
  381. lambda c: c.name,
  382. "Stopping and removing",
  383. )
  384. def execute_convergence_plan(self, plan, timeout=None, detached=False,
  385. start=True, scale_override=None, rescale=True, project_services=None):
  386. (action, containers) = plan
  387. scale = scale_override if scale_override is not None else self.scale_num
  388. containers = sorted(containers, key=attrgetter('number'))
  389. self.show_scale_warnings(scale)
  390. if action == 'create':
  391. return self._execute_convergence_create(
  392. scale, detached, start, project_services
  393. )
  394. # The create action needs always needs an initial scale, but otherwise,
  395. # we set scale to none in no-rescale scenarios (`run` dependencies)
  396. if not rescale:
  397. scale = None
  398. if action == 'recreate':
  399. return self._execute_convergence_recreate(
  400. containers, scale, timeout, detached, start
  401. )
  402. if action == 'start':
  403. return self._execute_convergence_start(
  404. containers, scale, timeout, detached, start
  405. )
  406. if action == 'noop':
  407. if scale != len(containers):
  408. return self._execute_convergence_start(
  409. containers, scale, timeout, detached, start
  410. )
  411. for c in containers:
  412. log.info("%s is up-to-date" % c.name)
  413. return containers
  414. raise Exception("Invalid action: {}".format(action))
  415. def recreate_container(
  416. self,
  417. container,
  418. timeout=None,
  419. attach_logs=False,
  420. start_new_container=True):
  421. """Recreate a container.
  422. The original container is renamed to a temporary name so that data
  423. volumes can be copied to the new container, before the original
  424. container is removed.
  425. """
  426. container.stop(timeout=self.stop_timeout(timeout))
  427. container.rename_to_tmp_name()
  428. new_container = self.create_container(
  429. previous_container=container,
  430. number=container.labels.get(LABEL_CONTAINER_NUMBER),
  431. quiet=True,
  432. )
  433. if attach_logs:
  434. new_container.attach_log_stream()
  435. if start_new_container:
  436. self.start_container(new_container)
  437. container.remove()
  438. return new_container
  439. def stop_timeout(self, timeout):
  440. if timeout is not None:
  441. return timeout
  442. timeout = parse_seconds_float(self.options.get('stop_grace_period'))
  443. if timeout is not None:
  444. return timeout
  445. return DEFAULT_TIMEOUT
  446. def start_container_if_stopped(self, container, attach_logs=False, quiet=False):
  447. if not container.is_running:
  448. if not quiet:
  449. log.info("Starting %s" % container.name)
  450. if attach_logs:
  451. container.attach_log_stream()
  452. return self.start_container(container)
  453. def start_container(self, container):
  454. self.connect_container_to_networks(container)
  455. try:
  456. container.start()
  457. except APIError as ex:
  458. raise OperationFailedError("Cannot start service %s: %s" % (self.name, ex.explanation))
  459. return container
  460. def connect_container_to_networks(self, container):
  461. connected_networks = container.get('NetworkSettings.Networks')
  462. for network, netdefs in self.networks.items():
  463. if network in connected_networks:
  464. if short_id_alias_exists(container, network):
  465. continue
  466. self.client.disconnect_container_from_network(
  467. container.id,
  468. network)
  469. self.client.connect_container_to_network(
  470. container.id, network,
  471. aliases=self._get_aliases(netdefs, container),
  472. ipv4_address=netdefs.get('ipv4_address', None),
  473. ipv6_address=netdefs.get('ipv6_address', None),
  474. links=self._get_links(False),
  475. link_local_ips=netdefs.get('link_local_ips', None),
  476. )
  477. def remove_duplicate_containers(self, timeout=None):
  478. for c in self.duplicate_containers():
  479. log.info('Removing %s' % c.name)
  480. c.stop(timeout=self.stop_timeout(timeout))
  481. c.remove()
  482. def duplicate_containers(self):
  483. containers = sorted(
  484. self.containers(stopped=True),
  485. key=lambda c: c.get('Created'),
  486. )
  487. numbers = set()
  488. for c in containers:
  489. if c.number in numbers:
  490. yield c
  491. else:
  492. numbers.add(c.number)
  493. @property
  494. def config_hash(self):
  495. return json_hash(self.config_dict())
  496. def config_dict(self):
  497. return {
  498. 'options': self.options,
  499. 'image_id': self.image()['Id'],
  500. 'links': self.get_link_names(),
  501. 'net': self.network_mode.id,
  502. 'networks': self.networks,
  503. 'volumes_from': [
  504. (v.source.name, v.mode)
  505. for v in self.volumes_from if isinstance(v.source, Service)
  506. ],
  507. }
  508. def get_dependency_names(self):
  509. net_name = self.network_mode.service_name
  510. pid_namespace = self.pid_mode.service_name
  511. return (
  512. self.get_linked_service_names() +
  513. self.get_volumes_from_names() +
  514. ([net_name] if net_name else []) +
  515. ([pid_namespace] if pid_namespace else []) +
  516. list(self.options.get('depends_on', {}).keys())
  517. )
  518. def get_dependency_configs(self):
  519. net_name = self.network_mode.service_name
  520. pid_namespace = self.pid_mode.service_name
  521. configs = dict(
  522. [(name, None) for name in self.get_linked_service_names()]
  523. )
  524. configs.update(dict(
  525. [(name, None) for name in self.get_volumes_from_names()]
  526. ))
  527. configs.update({net_name: None} if net_name else {})
  528. configs.update({pid_namespace: None} if pid_namespace else {})
  529. configs.update(self.options.get('depends_on', {}))
  530. for svc, config in self.options.get('depends_on', {}).items():
  531. if config['condition'] == CONDITION_STARTED:
  532. configs[svc] = lambda s: True
  533. elif config['condition'] == CONDITION_HEALTHY:
  534. configs[svc] = lambda s: s.is_healthy()
  535. else:
  536. # The config schema already prevents this, but it might be
  537. # bypassed if Compose is called programmatically.
  538. raise ValueError(
  539. 'depends_on condition "{}" is invalid.'.format(
  540. config['condition']
  541. )
  542. )
  543. return configs
  544. def get_linked_service_names(self):
  545. return [service.name for (service, _) in self.links]
  546. def get_link_names(self):
  547. return [(service.name, alias) for service, alias in self.links]
  548. def get_volumes_from_names(self):
  549. return [s.source.name for s in self.volumes_from if isinstance(s.source, Service)]
  550. # TODO: this would benefit from github.com/docker/docker/pull/14699
  551. # to remove the need to inspect every container
  552. def _next_container_number(self, one_off=False):
  553. containers = filter(None, [
  554. Container.from_ps(self.client, container)
  555. for container in self.client.containers(
  556. all=True,
  557. filters={'label': self.labels(one_off=one_off)})
  558. ])
  559. numbers = [c.number for c in containers]
  560. return 1 if not numbers else max(numbers) + 1
  561. def _get_aliases(self, network, container=None):
  562. if container and container.labels.get(LABEL_ONE_OFF) == "True":
  563. return []
  564. return list(
  565. {self.name} |
  566. ({container.short_id} if container else set()) |
  567. set(network.get('aliases', ()))
  568. )
  569. def build_default_networking_config(self):
  570. if not self.networks:
  571. return {}
  572. network = self.networks[self.network_mode.id]
  573. endpoint = {
  574. 'Aliases': self._get_aliases(network),
  575. 'IPAMConfig': {},
  576. }
  577. if network.get('ipv4_address'):
  578. endpoint['IPAMConfig']['IPv4Address'] = network.get('ipv4_address')
  579. if network.get('ipv6_address'):
  580. endpoint['IPAMConfig']['IPv6Address'] = network.get('ipv6_address')
  581. return {"EndpointsConfig": {self.network_mode.id: endpoint}}
  582. def _get_links(self, link_to_self):
  583. links = {}
  584. for service, link_name in self.links:
  585. for container in service.containers():
  586. links[link_name or service.name] = container.name
  587. links[container.name] = container.name
  588. links[container.name_without_project] = container.name
  589. if link_to_self:
  590. for container in self.containers():
  591. links[self.name] = container.name
  592. links[container.name] = container.name
  593. links[container.name_without_project] = container.name
  594. for external_link in self.options.get('external_links') or []:
  595. if ':' not in external_link:
  596. link_name = external_link
  597. else:
  598. external_link, link_name = external_link.split(':')
  599. links[link_name] = external_link
  600. return [
  601. (alias, container_name)
  602. for (container_name, alias) in links.items()
  603. ]
  604. def _get_volumes_from(self):
  605. return [build_volume_from(spec) for spec in self.volumes_from]
  606. def _get_container_create_options(
  607. self,
  608. override_options,
  609. number,
  610. one_off=False,
  611. previous_container=None):
  612. add_config_hash = (not one_off and not override_options)
  613. container_options = dict(
  614. (k, self.options[k])
  615. for k in DOCKER_CONFIG_KEYS if k in self.options)
  616. override_volumes = override_options.pop('volumes', [])
  617. container_options.update(override_options)
  618. if not container_options.get('name'):
  619. container_options['name'] = self.get_container_name(self.name, number, one_off)
  620. container_options.setdefault('detach', True)
  621. # If a qualified hostname was given, split it into an
  622. # unqualified hostname and a domainname unless domainname
  623. # was also given explicitly. This matches behavior
  624. # until Docker Engine 1.11.0 - Docker API 1.23.
  625. if (version_lt(self.client.api_version, '1.23') and
  626. 'hostname' in container_options and
  627. 'domainname' not in container_options and
  628. '.' in container_options['hostname']):
  629. parts = container_options['hostname'].partition('.')
  630. container_options['hostname'] = parts[0]
  631. container_options['domainname'] = parts[2]
  632. if (version_gte(self.client.api_version, '1.25') and
  633. 'stop_grace_period' in self.options):
  634. container_options['stop_timeout'] = self.stop_timeout(None)
  635. if 'ports' in container_options or 'expose' in self.options:
  636. container_options['ports'] = build_container_ports(
  637. formatted_ports(container_options.get('ports', [])),
  638. self.options)
  639. if 'volumes' in container_options or override_volumes:
  640. container_options['volumes'] = list(set(
  641. container_options.get('volumes', []) + override_volumes
  642. ))
  643. container_options['environment'] = merge_environment(
  644. self.options.get('environment'),
  645. override_options.get('environment'))
  646. container_options['labels'] = merge_labels(
  647. self.options.get('labels'),
  648. override_options.get('labels'))
  649. binds, affinity = merge_volume_bindings(
  650. container_options.get('volumes') or [],
  651. self.options.get('tmpfs') or [],
  652. previous_container)
  653. override_options['binds'] = binds
  654. container_options['environment'].update(affinity)
  655. container_options['volumes'] = dict(
  656. (v.internal, {}) for v in container_options.get('volumes') or {})
  657. secret_volumes = self.get_secret_volumes()
  658. if secret_volumes:
  659. if version_lt(self.client.api_version, '1.30'):
  660. override_options['binds'].extend(v.legacy_repr() for v in secret_volumes)
  661. container_options['volumes'].update(
  662. (v.target, {}) for v in secret_volumes
  663. )
  664. else:
  665. override_options['mounts'] = [build_mount(v) for v in secret_volumes]
  666. container_options['image'] = self.image_name
  667. container_options['labels'] = build_container_labels(
  668. container_options.get('labels', {}),
  669. self.labels(one_off=one_off),
  670. number,
  671. self.config_hash if add_config_hash else None)
  672. # Delete options which are only used in HostConfig
  673. for key in HOST_CONFIG_KEYS:
  674. container_options.pop(key, None)
  675. container_options['host_config'] = self._get_container_host_config(
  676. override_options,
  677. one_off=one_off)
  678. networking_config = self.build_default_networking_config()
  679. if networking_config:
  680. container_options['networking_config'] = networking_config
  681. container_options['environment'] = format_environment(
  682. container_options['environment'])
  683. return container_options
  684. def _get_container_host_config(self, override_options, one_off=False):
  685. options = dict(self.options, **override_options)
  686. logging_dict = options.get('logging', None)
  687. blkio_config = convert_blkio_config(options.get('blkio_config', None))
  688. log_config = get_log_config(logging_dict)
  689. init_path = None
  690. if isinstance(options.get('init'), six.string_types):
  691. init_path = options.get('init')
  692. options['init'] = True
  693. nano_cpus = None
  694. if 'cpus' in options:
  695. nano_cpus = int(options.get('cpus') * NANOCPUS_SCALE)
  696. return self.client.create_host_config(
  697. links=self._get_links(link_to_self=one_off),
  698. port_bindings=build_port_bindings(
  699. formatted_ports(options.get('ports', []))
  700. ),
  701. binds=options.get('binds'),
  702. volumes_from=self._get_volumes_from(),
  703. privileged=options.get('privileged', False),
  704. network_mode=self.network_mode.mode,
  705. devices=options.get('devices'),
  706. dns=options.get('dns'),
  707. dns_opt=options.get('dns_opt'),
  708. dns_search=options.get('dns_search'),
  709. restart_policy=options.get('restart'),
  710. cap_add=options.get('cap_add'),
  711. cap_drop=options.get('cap_drop'),
  712. mem_limit=options.get('mem_limit'),
  713. mem_reservation=options.get('mem_reservation'),
  714. memswap_limit=options.get('memswap_limit'),
  715. ulimits=build_ulimits(options.get('ulimits')),
  716. log_config=log_config,
  717. extra_hosts=options.get('extra_hosts'),
  718. read_only=options.get('read_only'),
  719. pid_mode=self.pid_mode.mode,
  720. security_opt=options.get('security_opt'),
  721. ipc_mode=options.get('ipc'),
  722. cgroup_parent=options.get('cgroup_parent'),
  723. cpu_quota=options.get('cpu_quota'),
  724. shm_size=options.get('shm_size'),
  725. sysctls=options.get('sysctls'),
  726. pids_limit=options.get('pids_limit'),
  727. tmpfs=options.get('tmpfs'),
  728. oom_kill_disable=options.get('oom_kill_disable'),
  729. oom_score_adj=options.get('oom_score_adj'),
  730. mem_swappiness=options.get('mem_swappiness'),
  731. group_add=options.get('group_add'),
  732. userns_mode=options.get('userns_mode'),
  733. init=options.get('init', None),
  734. init_path=init_path,
  735. isolation=options.get('isolation'),
  736. cpu_count=options.get('cpu_count'),
  737. cpu_percent=options.get('cpu_percent'),
  738. nano_cpus=nano_cpus,
  739. volume_driver=options.get('volume_driver'),
  740. cpuset_cpus=options.get('cpuset'),
  741. cpu_shares=options.get('cpu_shares'),
  742. storage_opt=options.get('storage_opt'),
  743. blkio_weight=blkio_config.get('weight'),
  744. blkio_weight_device=blkio_config.get('weight_device'),
  745. device_read_bps=blkio_config.get('device_read_bps'),
  746. device_read_iops=blkio_config.get('device_read_iops'),
  747. device_write_bps=blkio_config.get('device_write_bps'),
  748. device_write_iops=blkio_config.get('device_write_iops'),
  749. mounts=options.get('mounts'),
  750. )
  751. def get_secret_volumes(self):
  752. def build_spec(secret):
  753. target = secret['secret'].target
  754. if target is None:
  755. target = '{}/{}'.format(const.SECRETS_PATH, secret['secret'].source)
  756. elif not os.path.isabs(target):
  757. target = '{}/{}'.format(const.SECRETS_PATH, target)
  758. return MountSpec('bind', secret['file'], target, read_only=True)
  759. return [build_spec(secret) for secret in self.secrets]
  760. def build(self, no_cache=False, pull=False, force_rm=False, build_args_override=None):
  761. log.info('Building %s' % self.name)
  762. build_opts = self.options.get('build', {})
  763. build_args = build_opts.get('args', {}).copy()
  764. if build_args_override:
  765. build_args.update(build_args_override)
  766. # python2 os.stat() doesn't support unicode on some UNIX, so we
  767. # encode it to a bytestring to be safe
  768. path = build_opts.get('context')
  769. if not six.PY3 and not IS_WINDOWS_PLATFORM:
  770. path = path.encode('utf8')
  771. build_output = self.client.build(
  772. path=path,
  773. tag=self.image_name,
  774. stream=True,
  775. rm=True,
  776. forcerm=force_rm,
  777. pull=pull,
  778. nocache=no_cache,
  779. dockerfile=build_opts.get('dockerfile', None),
  780. cache_from=build_opts.get('cache_from', None),
  781. labels=build_opts.get('labels', None),
  782. buildargs=build_args,
  783. network_mode=build_opts.get('network', None),
  784. target=build_opts.get('target', None),
  785. shmsize=parse_bytes(build_opts.get('shm_size')) if build_opts.get('shm_size') else None,
  786. extra_hosts=build_opts.get('extra_hosts', None),
  787. )
  788. try:
  789. all_events = stream_output(build_output, sys.stdout)
  790. except StreamOutputError as e:
  791. raise BuildError(self, six.text_type(e))
  792. # Ensure the HTTP connection is not reused for another
  793. # streaming command, as the Docker daemon can sometimes
  794. # complain about it
  795. self.client.close()
  796. image_id = None
  797. for event in all_events:
  798. if 'stream' in event:
  799. match = re.search(r'Successfully built ([0-9a-f]+)', event.get('stream', ''))
  800. if match:
  801. image_id = match.group(1)
  802. if image_id is None:
  803. raise BuildError(self, event if all_events else 'Unknown')
  804. return image_id
  805. def can_be_built(self):
  806. return 'build' in self.options
  807. def labels(self, one_off=False):
  808. return [
  809. '{0}={1}'.format(LABEL_PROJECT, self.project),
  810. '{0}={1}'.format(LABEL_SERVICE, self.name),
  811. '{0}={1}'.format(LABEL_ONE_OFF, "True" if one_off else "False")
  812. ]
  813. @property
  814. def custom_container_name(self):
  815. return self.options.get('container_name')
  816. def get_container_name(self, service_name, number, one_off=False):
  817. if self.custom_container_name and not one_off:
  818. return self.custom_container_name
  819. container_name = build_container_name(
  820. self.project, service_name, number, one_off,
  821. )
  822. ext_links_origins = [l.split(':')[0] for l in self.options.get('external_links', [])]
  823. if container_name in ext_links_origins:
  824. raise DependencyError(
  825. 'Service {0} has a self-referential external link: {1}'.format(
  826. self.name, container_name
  827. )
  828. )
  829. return container_name
  830. def remove_image(self, image_type):
  831. if not image_type or image_type == ImageType.none:
  832. return False
  833. if image_type == ImageType.local and self.options.get('image'):
  834. return False
  835. log.info("Removing image %s", self.image_name)
  836. try:
  837. self.client.remove_image(self.image_name)
  838. return True
  839. except APIError as e:
  840. log.error("Failed to remove image for service %s: %s", self.name, e)
  841. return False
  842. def specifies_host_port(self):
  843. def has_host_port(binding):
  844. if isinstance(binding, dict):
  845. external_bindings = binding.get('published')
  846. else:
  847. _, external_bindings = split_port(binding)
  848. # there are no external bindings
  849. if external_bindings is None:
  850. return False
  851. # we only need to check the first binding from the range
  852. external_binding = external_bindings[0]
  853. # non-tuple binding means there is a host port specified
  854. if not isinstance(external_binding, tuple):
  855. return True
  856. # extract actual host port from tuple of (host_ip, host_port)
  857. _, host_port = external_binding
  858. if host_port is not None:
  859. return True
  860. return False
  861. return any(has_host_port(binding) for binding in self.options.get('ports', []))
  862. def pull(self, ignore_pull_failures=False, silent=False):
  863. if 'image' not in self.options:
  864. return
  865. repo, tag, separator = parse_repository_tag(self.options['image'])
  866. tag = tag or 'latest'
  867. if not silent:
  868. log.info('Pulling %s (%s%s%s)...' % (self.name, repo, separator, tag))
  869. try:
  870. output = self.client.pull(repo, tag=tag, stream=True)
  871. if silent:
  872. with open(os.devnull, 'w') as devnull:
  873. return progress_stream.get_digest_from_pull(
  874. stream_output(output, devnull))
  875. else:
  876. return progress_stream.get_digest_from_pull(
  877. stream_output(output, sys.stdout))
  878. except (StreamOutputError, NotFound) as e:
  879. if not ignore_pull_failures:
  880. raise
  881. else:
  882. log.error(six.text_type(e))
  883. def push(self, ignore_push_failures=False):
  884. if 'image' not in self.options or 'build' not in self.options:
  885. return
  886. repo, tag, separator = parse_repository_tag(self.options['image'])
  887. tag = tag or 'latest'
  888. log.info('Pushing %s (%s%s%s)...' % (self.name, repo, separator, tag))
  889. output = self.client.push(repo, tag=tag, stream=True)
  890. try:
  891. return progress_stream.get_digest_from_push(
  892. stream_output(output, sys.stdout))
  893. except StreamOutputError as e:
  894. if not ignore_push_failures:
  895. raise
  896. else:
  897. log.error(six.text_type(e))
  898. def is_healthy(self):
  899. """ Check that all containers for this service report healthy.
  900. Returns false if at least one healthcheck is pending.
  901. If an unhealthy container is detected, raise a HealthCheckFailed
  902. exception.
  903. """
  904. result = True
  905. for ctnr in self.containers():
  906. ctnr.inspect()
  907. status = ctnr.get('State.Health.Status')
  908. if status is None:
  909. raise NoHealthCheckConfigured(self.name)
  910. elif status == 'starting':
  911. result = False
  912. elif status == 'unhealthy':
  913. raise HealthCheckFailed(ctnr.short_id)
  914. return result
  915. def short_id_alias_exists(container, network):
  916. aliases = container.get(
  917. 'NetworkSettings.Networks.{net}.Aliases'.format(net=network)) or ()
  918. return container.short_id in aliases
  919. class PidMode(object):
  920. def __init__(self, mode):
  921. self._mode = mode
  922. @property
  923. def mode(self):
  924. return self._mode
  925. @property
  926. def service_name(self):
  927. return None
  928. class ServicePidMode(PidMode):
  929. def __init__(self, service):
  930. self.service = service
  931. @property
  932. def service_name(self):
  933. return self.service.name
  934. @property
  935. def mode(self):
  936. containers = self.service.containers()
  937. if containers:
  938. return 'container:' + containers[0].id
  939. log.warn(
  940. "Service %s is trying to use reuse the PID namespace "
  941. "of another service that is not running." % (self.service_name)
  942. )
  943. return None
  944. class ContainerPidMode(PidMode):
  945. def __init__(self, container):
  946. self.container = container
  947. self._mode = 'container:{}'.format(container.id)
  948. class NetworkMode(object):
  949. """A `standard` network mode (ex: host, bridge)"""
  950. service_name = None
  951. def __init__(self, network_mode):
  952. self.network_mode = network_mode
  953. @property
  954. def id(self):
  955. return self.network_mode
  956. mode = id
  957. class ContainerNetworkMode(object):
  958. """A network mode that uses a container's network stack."""
  959. service_name = None
  960. def __init__(self, container):
  961. self.container = container
  962. @property
  963. def id(self):
  964. return self.container.id
  965. @property
  966. def mode(self):
  967. return 'container:' + self.container.id
  968. class ServiceNetworkMode(object):
  969. """A network mode that uses a service's network stack."""
  970. def __init__(self, service):
  971. self.service = service
  972. @property
  973. def id(self):
  974. return self.service.name
  975. service_name = id
  976. @property
  977. def mode(self):
  978. containers = self.service.containers()
  979. if containers:
  980. return 'container:' + containers[0].id
  981. log.warn("Service %s is trying to use reuse the network stack "
  982. "of another service that is not running." % (self.id))
  983. return None
  984. # Names
  985. def build_container_name(project, service, number, one_off=False):
  986. bits = [project, service]
  987. if one_off:
  988. bits.append('run')
  989. return '_'.join(bits + [str(number)])
  990. # Images
  991. def parse_repository_tag(repo_path):
  992. """Splits image identification into base image path, tag/digest
  993. and it's separator.
  994. Example:
  995. >>> parse_repository_tag('user/repo@sha256:digest')
  996. ('user/repo', 'sha256:digest', '@')
  997. >>> parse_repository_tag('user/repo:v1')
  998. ('user/repo', 'v1', ':')
  999. """
  1000. tag_separator = ":"
  1001. digest_separator = "@"
  1002. if digest_separator in repo_path:
  1003. repo, tag = repo_path.rsplit(digest_separator, 1)
  1004. return repo, tag, digest_separator
  1005. repo, tag = repo_path, ""
  1006. if tag_separator in repo_path:
  1007. repo, tag = repo_path.rsplit(tag_separator, 1)
  1008. if "/" in tag:
  1009. repo, tag = repo_path, ""
  1010. return repo, tag, tag_separator
  1011. # Volumes
  1012. def merge_volume_bindings(volumes, tmpfs, previous_container):
  1013. """Return a list of volume bindings for a container. Container data volumes
  1014. are replaced by those from the previous container.
  1015. """
  1016. affinity = {}
  1017. volume_bindings = dict(
  1018. build_volume_binding(volume)
  1019. for volume in volumes
  1020. if volume.external)
  1021. if previous_container:
  1022. old_volumes = get_container_data_volumes(previous_container, volumes, tmpfs)
  1023. warn_on_masked_volume(volumes, old_volumes, previous_container.service)
  1024. volume_bindings.update(
  1025. build_volume_binding(volume) for volume in old_volumes)
  1026. if old_volumes:
  1027. affinity = {'affinity:container': '=' + previous_container.id}
  1028. return list(volume_bindings.values()), affinity
  1029. def get_container_data_volumes(container, volumes_option, tmpfs_option):
  1030. """Find the container data volumes that are in `volumes_option`, and return
  1031. a mapping of volume bindings for those volumes.
  1032. """
  1033. volumes = []
  1034. volumes_option = volumes_option or []
  1035. container_mounts = dict(
  1036. (mount['Destination'], mount)
  1037. for mount in container.get('Mounts') or {}
  1038. )
  1039. image_volumes = [
  1040. VolumeSpec.parse(volume)
  1041. for volume in
  1042. container.image_config['ContainerConfig'].get('Volumes') or {}
  1043. ]
  1044. for volume in set(volumes_option + image_volumes):
  1045. # No need to preserve host volumes
  1046. if volume.external:
  1047. continue
  1048. # Attempting to rebind tmpfs volumes breaks: https://github.com/docker/compose/issues/4751
  1049. if volume.internal in convert_tmpfs_mounts(tmpfs_option).keys():
  1050. continue
  1051. mount = container_mounts.get(volume.internal)
  1052. # New volume, doesn't exist in the old container
  1053. if not mount:
  1054. continue
  1055. # Volume was previously a host volume, now it's a container volume
  1056. if not mount.get('Name'):
  1057. continue
  1058. # Copy existing volume from old container
  1059. volume = volume._replace(external=mount['Name'])
  1060. volumes.append(volume)
  1061. return volumes
  1062. def warn_on_masked_volume(volumes_option, container_volumes, service):
  1063. container_volumes = dict(
  1064. (volume.internal, volume.external)
  1065. for volume in container_volumes)
  1066. for volume in volumes_option:
  1067. if (
  1068. volume.external and
  1069. volume.internal in container_volumes and
  1070. container_volumes.get(volume.internal) != volume.external
  1071. ):
  1072. log.warn((
  1073. "Service \"{service}\" is using volume \"{volume}\" from the "
  1074. "previous container. Host mapping \"{host_path}\" has no effect. "
  1075. "Remove the existing containers (with `docker-compose rm {service}`) "
  1076. "to use the host volume mapping."
  1077. ).format(
  1078. service=service,
  1079. volume=volume.internal,
  1080. host_path=volume.external))
  1081. def build_volume_binding(volume_spec):
  1082. return volume_spec.internal, volume_spec.repr()
  1083. def build_volume_from(volume_from_spec):
  1084. """
  1085. volume_from can be either a service or a container. We want to return the
  1086. container.id and format it into a string complete with the mode.
  1087. """
  1088. if isinstance(volume_from_spec.source, Service):
  1089. containers = volume_from_spec.source.containers(stopped=True)
  1090. if not containers:
  1091. return "{}:{}".format(
  1092. volume_from_spec.source.create_container().id,
  1093. volume_from_spec.mode)
  1094. container = containers[0]
  1095. return "{}:{}".format(container.id, volume_from_spec.mode)
  1096. elif isinstance(volume_from_spec.source, Container):
  1097. return "{}:{}".format(volume_from_spec.source.id, volume_from_spec.mode)
  1098. def build_mount(mount_spec):
  1099. kwargs = {}
  1100. if mount_spec.options:
  1101. for option, sdk_name in mount_spec.options_map[mount_spec.type].items():
  1102. if option in mount_spec.options:
  1103. kwargs[sdk_name] = mount_spec.options[option]
  1104. return Mount(
  1105. type=mount_spec.type, target=mount_spec.target, source=mount_spec.source,
  1106. read_only=mount_spec.read_only, consistency=mount_spec.consistency, **kwargs
  1107. )
  1108. # Labels
  1109. def build_container_labels(label_options, service_labels, number, config_hash):
  1110. labels = dict(label_options or {})
  1111. labels.update(label.split('=', 1) for label in service_labels)
  1112. labels[LABEL_CONTAINER_NUMBER] = str(number)
  1113. labels[LABEL_VERSION] = __version__
  1114. if config_hash:
  1115. log.debug("Added config hash: %s" % config_hash)
  1116. labels[LABEL_CONFIG_HASH] = config_hash
  1117. return labels
  1118. # Ulimits
  1119. def build_ulimits(ulimit_config):
  1120. if not ulimit_config:
  1121. return None
  1122. ulimits = []
  1123. for limit_name, soft_hard_values in six.iteritems(ulimit_config):
  1124. if isinstance(soft_hard_values, six.integer_types):
  1125. ulimits.append({'name': limit_name, 'soft': soft_hard_values, 'hard': soft_hard_values})
  1126. elif isinstance(soft_hard_values, dict):
  1127. ulimit_dict = {'name': limit_name}
  1128. ulimit_dict.update(soft_hard_values)
  1129. ulimits.append(ulimit_dict)
  1130. return ulimits
  1131. def get_log_config(logging_dict):
  1132. log_driver = logging_dict.get('driver', "") if logging_dict else ""
  1133. log_options = logging_dict.get('options', None) if logging_dict else None
  1134. return LogConfig(
  1135. type=log_driver,
  1136. config=log_options
  1137. )
  1138. # TODO: remove once fix is available in docker-py
  1139. def format_environment(environment):
  1140. def format_env(key, value):
  1141. if value is None:
  1142. return key
  1143. if isinstance(value, six.binary_type):
  1144. value = value.decode('utf-8')
  1145. return '{key}={value}'.format(key=key, value=value)
  1146. return [format_env(*item) for item in environment.items()]
  1147. # Ports
  1148. def formatted_ports(ports):
  1149. result = []
  1150. for port in ports:
  1151. if isinstance(port, ServicePort):
  1152. result.append(port.legacy_repr())
  1153. else:
  1154. result.append(port)
  1155. return result
  1156. def build_container_ports(container_ports, options):
  1157. ports = []
  1158. all_ports = container_ports + options.get('expose', [])
  1159. for port_range in all_ports:
  1160. internal_range, _ = split_port(port_range)
  1161. for port in internal_range:
  1162. port = str(port)
  1163. if '/' in port:
  1164. port = tuple(port.split('/'))
  1165. ports.append(port)
  1166. return ports
  1167. def convert_blkio_config(blkio_config):
  1168. result = {}
  1169. if blkio_config is None:
  1170. return result
  1171. result['weight'] = blkio_config.get('weight')
  1172. for field in [
  1173. "device_read_bps", "device_read_iops", "device_write_bps",
  1174. "device_write_iops", "weight_device",
  1175. ]:
  1176. if field not in blkio_config:
  1177. continue
  1178. arr = []
  1179. for item in blkio_config[field]:
  1180. arr.append(dict([(k.capitalize(), v) for k, v in item.items()]))
  1181. result[field] = arr
  1182. return result