service.py 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874
  1. from __future__ import unicode_literals
  2. from __future__ import absolute_import
  3. from collections import namedtuple
  4. import logging
  5. import re
  6. import sys
  7. from operator import attrgetter
  8. import six
  9. from docker.errors import APIError
  10. from docker.utils import create_host_config, LogConfig
  11. from . import __version__
  12. from .config import DOCKER_CONFIG_KEYS, merge_environment
  13. from .const import (
  14. LABEL_CONTAINER_NUMBER,
  15. LABEL_ONE_OFF,
  16. LABEL_PROJECT,
  17. LABEL_SERVICE,
  18. LABEL_VERSION,
  19. LABEL_CONFIG_HASH,
  20. )
  21. from .container import Container
  22. from .legacy import check_for_legacy_containers
  23. from .progress_stream import stream_output, StreamOutputError
  24. from .utils import json_hash
  25. log = logging.getLogger(__name__)
  26. DOCKER_START_KEYS = [
  27. 'cap_add',
  28. 'cap_drop',
  29. 'devices',
  30. 'dns',
  31. 'dns_search',
  32. 'env_file',
  33. 'extra_hosts',
  34. 'read_only',
  35. 'net',
  36. 'log_driver',
  37. 'pid',
  38. 'privileged',
  39. 'restart',
  40. 'volumes_from',
  41. 'security_opt',
  42. ]
  43. VALID_NAME_CHARS = '[a-zA-Z0-9]'
  44. class BuildError(Exception):
  45. def __init__(self, service, reason):
  46. self.service = service
  47. self.reason = reason
  48. class CannotBeScaledError(Exception):
  49. pass
  50. class ConfigError(ValueError):
  51. pass
  52. class NeedsBuildError(Exception):
  53. def __init__(self, service):
  54. self.service = service
  55. VolumeSpec = namedtuple('VolumeSpec', 'external internal mode')
  56. ServiceName = namedtuple('ServiceName', 'project service number')
  57. ConvergencePlan = namedtuple('ConvergencePlan', 'action containers')
  58. class Service(object):
  59. def __init__(self, name, client=None, project='default', links=None, external_links=None, volumes_from=None, net=None, **options):
  60. if not re.match('^%s+$' % VALID_NAME_CHARS, name):
  61. raise ConfigError('Invalid service name "%s" - only %s are allowed' % (name, VALID_NAME_CHARS))
  62. if not re.match('^%s+$' % VALID_NAME_CHARS, project):
  63. raise ConfigError('Invalid project name "%s" - only %s are allowed' % (project, VALID_NAME_CHARS))
  64. if 'image' in options and 'build' in options:
  65. raise ConfigError('Service %s has both an image and build path specified. A service can either be built to image or use an existing image, not both.' % name)
  66. if 'image' not in options and 'build' not in options:
  67. raise ConfigError('Service %s has neither an image nor a build path specified. Exactly one must be provided.' % name)
  68. self.name = name
  69. self.client = client
  70. self.project = project
  71. self.links = links or []
  72. self.external_links = external_links or []
  73. self.volumes_from = volumes_from or []
  74. self.net = net or None
  75. self.options = options
  76. def containers(self, stopped=False, one_off=False):
  77. containers = [
  78. Container.from_ps(self.client, container)
  79. for container in self.client.containers(
  80. all=stopped,
  81. filters={'label': self.labels(one_off=one_off)})]
  82. if not containers:
  83. check_for_legacy_containers(
  84. self.client,
  85. self.project,
  86. [self.name],
  87. stopped=stopped,
  88. one_off=one_off)
  89. return containers
  90. def get_container(self, number=1):
  91. """Return a :class:`compose.container.Container` for this service. The
  92. container must be active, and match `number`.
  93. """
  94. labels = self.labels() + ['{0}={1}'.format(LABEL_CONTAINER_NUMBER, number)]
  95. for container in self.client.containers(filters={'label': labels}):
  96. return Container.from_ps(self.client, container)
  97. raise ValueError("No container found for %s_%s" % (self.name, number))
  98. def start(self, **options):
  99. for c in self.containers(stopped=True):
  100. self.start_container_if_stopped(c, **options)
  101. def stop(self, **options):
  102. for c in self.containers():
  103. log.info("Stopping %s..." % c.name)
  104. c.stop(**options)
  105. def kill(self, **options):
  106. for c in self.containers():
  107. log.info("Killing %s..." % c.name)
  108. c.kill(**options)
  109. def restart(self, **options):
  110. for c in self.containers():
  111. log.info("Restarting %s..." % c.name)
  112. c.restart(**options)
  113. def scale(self, desired_num):
  114. """
  115. Adjusts the number of containers to the specified number and ensures
  116. they are running.
  117. - creates containers until there are at least `desired_num`
  118. - stops containers until there are at most `desired_num` running
  119. - starts containers until there are at least `desired_num` running
  120. - removes all stopped containers
  121. """
  122. if not self.can_be_scaled():
  123. raise CannotBeScaledError()
  124. # Create enough containers
  125. containers = self.containers(stopped=True)
  126. while len(containers) < desired_num:
  127. containers.append(self.create_container())
  128. running_containers = []
  129. stopped_containers = []
  130. for c in containers:
  131. if c.is_running:
  132. running_containers.append(c)
  133. else:
  134. stopped_containers.append(c)
  135. running_containers.sort(key=lambda c: c.number)
  136. stopped_containers.sort(key=lambda c: c.number)
  137. # Stop containers
  138. while len(running_containers) > desired_num:
  139. c = running_containers.pop()
  140. log.info("Stopping %s..." % c.name)
  141. c.stop(timeout=1)
  142. stopped_containers.append(c)
  143. # Start containers
  144. while len(running_containers) < desired_num:
  145. c = stopped_containers.pop(0)
  146. log.info("Starting %s..." % c.name)
  147. self.start_container(c)
  148. running_containers.append(c)
  149. self.remove_stopped()
  150. def remove_stopped(self, **options):
  151. for c in self.containers(stopped=True):
  152. if not c.is_running:
  153. log.info("Removing %s..." % c.name)
  154. c.remove(**options)
  155. def create_container(self,
  156. one_off=False,
  157. insecure_registry=False,
  158. do_build=True,
  159. previous_container=None,
  160. number=None,
  161. **override_options):
  162. """
  163. Create a container for this service. If the image doesn't exist, attempt to pull
  164. it.
  165. """
  166. self.ensure_image_exists(
  167. do_build=do_build,
  168. insecure_registry=insecure_registry,
  169. )
  170. container_options = self._get_container_create_options(
  171. override_options,
  172. number or self._next_container_number(one_off=one_off),
  173. one_off=one_off,
  174. previous_container=previous_container,
  175. )
  176. if 'name' in container_options:
  177. log.info("Creating %s..." % container_options['name'])
  178. return Container.create(self.client, **container_options)
  179. def ensure_image_exists(self,
  180. do_build=True,
  181. insecure_registry=False):
  182. if self.image():
  183. return
  184. if self.can_be_built():
  185. if do_build:
  186. self.build()
  187. else:
  188. raise NeedsBuildError(self)
  189. else:
  190. self.pull(insecure_registry=insecure_registry)
  191. def image(self):
  192. try:
  193. return self.client.inspect_image(self.image_name)
  194. except APIError as e:
  195. if e.response.status_code == 404 and e.explanation and 'No such image' in str(e.explanation):
  196. return None
  197. else:
  198. raise
  199. @property
  200. def image_name(self):
  201. if self.can_be_built():
  202. return self.full_name
  203. else:
  204. return self.options['image']
  205. def converge(self,
  206. allow_recreate=True,
  207. smart_recreate=False,
  208. insecure_registry=False,
  209. do_build=True):
  210. """
  211. If a container for this service doesn't exist, create and start one. If there are
  212. any, stop them, create+start new ones, and remove the old containers.
  213. """
  214. plan = self.convergence_plan(
  215. allow_recreate=allow_recreate,
  216. smart_recreate=smart_recreate,
  217. )
  218. return self.execute_convergence_plan(
  219. plan,
  220. insecure_registry=insecure_registry,
  221. do_build=do_build,
  222. )
  223. def convergence_plan(self,
  224. allow_recreate=True,
  225. smart_recreate=False):
  226. containers = self.containers(stopped=True)
  227. if not containers:
  228. return ConvergencePlan('create', [])
  229. if smart_recreate and not self._containers_have_diverged(containers):
  230. stopped = [c for c in containers if not c.is_running]
  231. if stopped:
  232. return ConvergencePlan('start', stopped)
  233. return ConvergencePlan('noop', containers)
  234. if not allow_recreate:
  235. return ConvergencePlan('start', containers)
  236. return ConvergencePlan('recreate', containers)
  237. def recreate_plan(self):
  238. containers = self.containers(stopped=True)
  239. return ConvergencePlan('recreate', containers)
  240. def _containers_have_diverged(self, containers):
  241. config_hash = self.config_hash()
  242. has_diverged = False
  243. for c in containers:
  244. container_config_hash = c.labels.get(LABEL_CONFIG_HASH, None)
  245. if container_config_hash != config_hash:
  246. log.debug(
  247. '%s has diverged: %s != %s',
  248. c.name, container_config_hash, config_hash,
  249. )
  250. has_diverged = True
  251. return has_diverged
  252. def execute_convergence_plan(self,
  253. plan,
  254. insecure_registry=False,
  255. do_build=True):
  256. (action, containers) = plan
  257. if action == 'create':
  258. container = self.create_container(
  259. insecure_registry=insecure_registry,
  260. do_build=do_build,
  261. )
  262. self.start_container(container)
  263. return [container]
  264. elif action == 'recreate':
  265. return [
  266. self.recreate_container(
  267. c,
  268. insecure_registry=insecure_registry,
  269. )
  270. for c in containers
  271. ]
  272. elif action == 'start':
  273. for c in containers:
  274. self.start_container_if_stopped(c)
  275. return containers
  276. elif action == 'noop':
  277. for c in containers:
  278. log.info("%s is up-to-date" % c.name)
  279. return containers
  280. else:
  281. raise Exception("Invalid action: {}".format(action))
  282. def recreate_container(self,
  283. container,
  284. insecure_registry=False):
  285. """Recreate a container.
  286. The original container is renamed to a temporary name so that data
  287. volumes can be copied to the new container, before the original
  288. container is removed.
  289. """
  290. log.info("Recreating %s..." % container.name)
  291. try:
  292. container.stop()
  293. except APIError as e:
  294. if (e.response.status_code == 500
  295. and e.explanation
  296. and 'no such process' in str(e.explanation)):
  297. pass
  298. else:
  299. raise
  300. # Use a hopefully unique container name by prepending the short id
  301. self.client.rename(
  302. container.id,
  303. '%s_%s' % (container.short_id, container.name))
  304. new_container = self.create_container(
  305. insecure_registry=insecure_registry,
  306. do_build=False,
  307. previous_container=container,
  308. number=container.labels.get(LABEL_CONTAINER_NUMBER),
  309. )
  310. self.start_container(new_container)
  311. container.remove()
  312. return new_container
  313. def start_container_if_stopped(self, container):
  314. if container.is_running:
  315. return container
  316. else:
  317. log.info("Starting %s..." % container.name)
  318. return self.start_container(container)
  319. def start_container(self, container):
  320. container.start()
  321. return container
  322. def start_or_create_containers(
  323. self,
  324. insecure_registry=False,
  325. do_build=True):
  326. containers = self.containers(stopped=True)
  327. if not containers:
  328. new_container = self.create_container(
  329. insecure_registry=insecure_registry,
  330. do_build=do_build,
  331. )
  332. return [self.start_container(new_container)]
  333. else:
  334. return [self.start_container_if_stopped(c) for c in containers]
  335. def config_hash(self):
  336. return json_hash(self.config_dict())
  337. def config_dict(self):
  338. return {
  339. 'options': self.options,
  340. 'image_id': self.image()['Id'],
  341. }
  342. def get_dependency_names(self):
  343. net_name = self.get_net_name()
  344. return (self.get_linked_names() +
  345. self.get_volumes_from_names() +
  346. ([net_name] if net_name else []))
  347. def get_linked_names(self):
  348. return [s.name for (s, _) in self.links]
  349. def get_volumes_from_names(self):
  350. return [s.name for s in self.volumes_from if isinstance(s, Service)]
  351. def get_net_name(self):
  352. if isinstance(self.net, Service):
  353. return self.net.name
  354. else:
  355. return
  356. def get_container_name(self, number, one_off=False):
  357. # TODO: Implement issue #652 here
  358. return build_container_name(self.project, self.name, number, one_off)
  359. # TODO: this would benefit from github.com/docker/docker/pull/11943
  360. # to remove the need to inspect every container
  361. def _next_container_number(self, one_off=False):
  362. numbers = [
  363. Container.from_ps(self.client, container).number
  364. for container in self.client.containers(
  365. all=True,
  366. filters={'label': self.labels(one_off=one_off)})
  367. ]
  368. return 1 if not numbers else max(numbers) + 1
  369. def _get_links(self, link_to_self):
  370. links = []
  371. for service, link_name in self.links:
  372. for container in service.containers():
  373. links.append((container.name, link_name or service.name))
  374. links.append((container.name, container.name))
  375. links.append((container.name, container.name_without_project))
  376. if link_to_self:
  377. for container in self.containers():
  378. links.append((container.name, self.name))
  379. links.append((container.name, container.name))
  380. links.append((container.name, container.name_without_project))
  381. for external_link in self.external_links:
  382. if ':' not in external_link:
  383. link_name = external_link
  384. else:
  385. external_link, link_name = external_link.split(':')
  386. links.append((external_link, link_name))
  387. return links
  388. def _get_volumes_from(self):
  389. volumes_from = []
  390. for volume_source in self.volumes_from:
  391. if isinstance(volume_source, Service):
  392. containers = volume_source.containers(stopped=True)
  393. if not containers:
  394. volumes_from.append(volume_source.create_container().id)
  395. else:
  396. volumes_from.extend(map(attrgetter('id'), containers))
  397. elif isinstance(volume_source, Container):
  398. volumes_from.append(volume_source.id)
  399. return volumes_from
  400. def _get_net(self):
  401. if not self.net:
  402. return "bridge"
  403. if isinstance(self.net, Service):
  404. containers = self.net.containers()
  405. if len(containers) > 0:
  406. net = 'container:' + containers[0].id
  407. else:
  408. log.warning("Warning: Service %s is trying to use reuse the network stack "
  409. "of another service that is not running." % (self.net.name))
  410. net = None
  411. elif isinstance(self.net, Container):
  412. net = 'container:' + self.net.id
  413. else:
  414. net = self.net
  415. return net
  416. def _get_container_create_options(
  417. self,
  418. override_options,
  419. number,
  420. one_off=False,
  421. previous_container=None):
  422. add_config_hash = (not one_off and not override_options)
  423. container_options = dict(
  424. (k, self.options[k])
  425. for k in DOCKER_CONFIG_KEYS if k in self.options)
  426. container_options.update(override_options)
  427. container_options['name'] = self.get_container_name(number, one_off)
  428. if add_config_hash:
  429. config_hash = self.config_hash()
  430. if 'labels' not in container_options:
  431. container_options['labels'] = {}
  432. container_options['labels'][LABEL_CONFIG_HASH] = config_hash
  433. log.debug("Added config hash: %s" % config_hash)
  434. if 'detach' not in container_options:
  435. container_options['detach'] = True
  436. # If a qualified hostname was given, split it into an
  437. # unqualified hostname and a domainname unless domainname
  438. # was also given explicitly. This matches the behavior of
  439. # the official Docker CLI in that scenario.
  440. if ('hostname' in container_options
  441. and 'domainname' not in container_options
  442. and '.' in container_options['hostname']):
  443. parts = container_options['hostname'].partition('.')
  444. container_options['hostname'] = parts[0]
  445. container_options['domainname'] = parts[2]
  446. if 'ports' in container_options or 'expose' in self.options:
  447. ports = []
  448. all_ports = container_options.get('ports', []) + self.options.get('expose', [])
  449. for port in all_ports:
  450. port = str(port)
  451. if ':' in port:
  452. port = port.split(':')[-1]
  453. if '/' in port:
  454. port = tuple(port.split('/'))
  455. ports.append(port)
  456. container_options['ports'] = ports
  457. override_options['binds'] = merge_volume_bindings(
  458. container_options.get('volumes') or [],
  459. previous_container)
  460. if 'volumes' in container_options:
  461. container_options['volumes'] = dict(
  462. (parse_volume_spec(v).internal, {})
  463. for v in container_options['volumes'])
  464. container_options['environment'] = merge_environment(
  465. self.options.get('environment'),
  466. override_options.get('environment'))
  467. if previous_container:
  468. container_options['environment']['affinity:container'] = ('=' + previous_container.id)
  469. container_options['image'] = self.image_name
  470. container_options['labels'] = build_container_labels(
  471. container_options.get('labels', {}),
  472. self.labels(one_off=one_off),
  473. number)
  474. # Delete options which are only used when starting
  475. for key in DOCKER_START_KEYS:
  476. container_options.pop(key, None)
  477. container_options['host_config'] = self._get_container_host_config(
  478. override_options,
  479. one_off=one_off)
  480. return container_options
  481. def _get_container_host_config(self, override_options, one_off=False):
  482. options = dict(self.options, **override_options)
  483. port_bindings = build_port_bindings(options.get('ports') or [])
  484. privileged = options.get('privileged', False)
  485. cap_add = options.get('cap_add', None)
  486. cap_drop = options.get('cap_drop', None)
  487. log_config = LogConfig(type=options.get('log_driver', 'json-file'))
  488. pid = options.get('pid', None)
  489. security_opt = options.get('security_opt', None)
  490. dns = options.get('dns', None)
  491. if isinstance(dns, six.string_types):
  492. dns = [dns]
  493. dns_search = options.get('dns_search', None)
  494. if isinstance(dns_search, six.string_types):
  495. dns_search = [dns_search]
  496. restart = parse_restart_spec(options.get('restart', None))
  497. extra_hosts = build_extra_hosts(options.get('extra_hosts', None))
  498. read_only = options.get('read_only', None)
  499. devices = options.get('devices', None)
  500. return create_host_config(
  501. links=self._get_links(link_to_self=one_off),
  502. port_bindings=port_bindings,
  503. binds=options.get('binds'),
  504. volumes_from=self._get_volumes_from(),
  505. privileged=privileged,
  506. network_mode=self._get_net(),
  507. devices=devices,
  508. dns=dns,
  509. dns_search=dns_search,
  510. restart_policy=restart,
  511. cap_add=cap_add,
  512. cap_drop=cap_drop,
  513. log_config=log_config,
  514. extra_hosts=extra_hosts,
  515. read_only=read_only,
  516. pid_mode=pid,
  517. security_opt=security_opt
  518. )
  519. def build(self, no_cache=False):
  520. log.info('Building %s...' % self.name)
  521. path = six.binary_type(self.options['build'])
  522. build_output = self.client.build(
  523. path=path,
  524. tag=self.image_name,
  525. stream=True,
  526. rm=True,
  527. nocache=no_cache,
  528. dockerfile=self.options.get('dockerfile', None),
  529. )
  530. try:
  531. all_events = stream_output(build_output, sys.stdout)
  532. except StreamOutputError as e:
  533. raise BuildError(self, unicode(e))
  534. # Ensure the HTTP connection is not reused for another
  535. # streaming command, as the Docker daemon can sometimes
  536. # complain about it
  537. self.client.close()
  538. image_id = None
  539. for event in all_events:
  540. if 'stream' in event:
  541. match = re.search(r'Successfully built ([0-9a-f]+)', event.get('stream', ''))
  542. if match:
  543. image_id = match.group(1)
  544. if image_id is None:
  545. raise BuildError(self, event if all_events else 'Unknown')
  546. return image_id
  547. def can_be_built(self):
  548. return 'build' in self.options
  549. @property
  550. def full_name(self):
  551. """
  552. The tag to give to images built for this service.
  553. """
  554. return '%s_%s' % (self.project, self.name)
  555. def labels(self, one_off=False):
  556. return [
  557. '{0}={1}'.format(LABEL_PROJECT, self.project),
  558. '{0}={1}'.format(LABEL_SERVICE, self.name),
  559. '{0}={1}'.format(LABEL_ONE_OFF, "True" if one_off else "False")
  560. ]
  561. def can_be_scaled(self):
  562. for port in self.options.get('ports', []):
  563. if ':' in str(port):
  564. return False
  565. return True
  566. def pull(self, insecure_registry=False):
  567. if 'image' not in self.options:
  568. return
  569. repo, tag = parse_repository_tag(self.options['image'])
  570. tag = tag or 'latest'
  571. log.info('Pulling %s (%s:%s)...' % (self.name, repo, tag))
  572. output = self.client.pull(
  573. repo,
  574. tag=tag,
  575. stream=True,
  576. insecure_registry=insecure_registry)
  577. stream_output(output, sys.stdout)
  578. def get_container_data_volumes(container, volumes_option):
  579. """Find the container data volumes that are in `volumes_option`, and return
  580. a mapping of volume bindings for those volumes.
  581. """
  582. volumes = []
  583. volumes_option = volumes_option or []
  584. container_volumes = container.get('Volumes') or {}
  585. image_volumes = container.image_config['ContainerConfig'].get('Volumes') or {}
  586. for volume in set(volumes_option + image_volumes.keys()):
  587. volume = parse_volume_spec(volume)
  588. # No need to preserve host volumes
  589. if volume.external:
  590. continue
  591. volume_path = container_volumes.get(volume.internal)
  592. # New volume, doesn't exist in the old container
  593. if not volume_path:
  594. continue
  595. # Copy existing volume from old container
  596. volume = volume._replace(external=volume_path)
  597. volumes.append(build_volume_binding(volume))
  598. return dict(volumes)
  599. def merge_volume_bindings(volumes_option, previous_container):
  600. """Return a list of volume bindings for a container. Container data volumes
  601. are replaced by those from the previous container.
  602. """
  603. volume_bindings = dict(
  604. build_volume_binding(parse_volume_spec(volume))
  605. for volume in volumes_option or []
  606. if ':' in volume)
  607. if previous_container:
  608. volume_bindings.update(
  609. get_container_data_volumes(previous_container, volumes_option))
  610. return volume_bindings
  611. def build_container_name(project, service, number, one_off=False):
  612. bits = [project, service]
  613. if one_off:
  614. bits.append('run')
  615. return '_'.join(bits + [str(number)])
  616. def build_container_labels(label_options, service_labels, number, one_off=False):
  617. labels = label_options or {}
  618. labels.update(label.split('=', 1) for label in service_labels)
  619. labels[LABEL_CONTAINER_NUMBER] = str(number)
  620. labels[LABEL_VERSION] = __version__
  621. return labels
  622. def parse_restart_spec(restart_config):
  623. if not restart_config:
  624. return None
  625. parts = restart_config.split(':')
  626. if len(parts) > 2:
  627. raise ConfigError("Restart %s has incorrect format, should be "
  628. "mode[:max_retry]" % restart_config)
  629. if len(parts) == 2:
  630. name, max_retry_count = parts
  631. else:
  632. name, = parts
  633. max_retry_count = 0
  634. return {'Name': name, 'MaximumRetryCount': int(max_retry_count)}
  635. def parse_volume_spec(volume_config):
  636. parts = volume_config.split(':')
  637. if len(parts) > 3:
  638. raise ConfigError("Volume %s has incorrect format, should be "
  639. "external:internal[:mode]" % volume_config)
  640. if len(parts) == 1:
  641. return VolumeSpec(None, parts[0], 'rw')
  642. if len(parts) == 2:
  643. parts.append('rw')
  644. external, internal, mode = parts
  645. if mode not in ('rw', 'ro'):
  646. raise ConfigError("Volume %s has invalid mode (%s), should be "
  647. "one of: rw, ro." % (volume_config, mode))
  648. return VolumeSpec(external, internal, mode)
  649. def parse_repository_tag(s):
  650. if ":" not in s:
  651. return s, ""
  652. repo, tag = s.rsplit(":", 1)
  653. if "/" in tag:
  654. return s, ""
  655. return repo, tag
  656. def build_volume_binding(volume_spec):
  657. internal = {'bind': volume_spec.internal, 'ro': volume_spec.mode == 'ro'}
  658. return volume_spec.external, internal
  659. def build_port_bindings(ports):
  660. port_bindings = {}
  661. for port in ports:
  662. internal_port, external = split_port(port)
  663. if internal_port in port_bindings:
  664. port_bindings[internal_port].append(external)
  665. else:
  666. port_bindings[internal_port] = [external]
  667. return port_bindings
  668. def split_port(port):
  669. parts = str(port).split(':')
  670. if not 1 <= len(parts) <= 3:
  671. raise ConfigError('Invalid port "%s", should be '
  672. '[[remote_ip:]remote_port:]port[/protocol]' % port)
  673. if len(parts) == 1:
  674. internal_port, = parts
  675. return internal_port, None
  676. if len(parts) == 2:
  677. external_port, internal_port = parts
  678. return internal_port, external_port
  679. external_ip, external_port, internal_port = parts
  680. return internal_port, (external_ip, external_port or None)
  681. def build_extra_hosts(extra_hosts_config):
  682. if not extra_hosts_config:
  683. return {}
  684. if isinstance(extra_hosts_config, list):
  685. extra_hosts_dict = {}
  686. for extra_hosts_line in extra_hosts_config:
  687. if not isinstance(extra_hosts_line, six.string_types):
  688. raise ConfigError(
  689. "extra_hosts_config \"%s\" must be either a list of strings or a string->string mapping," %
  690. extra_hosts_config
  691. )
  692. host, ip = extra_hosts_line.split(':')
  693. extra_hosts_dict.update({host.strip(): ip.strip()})
  694. extra_hosts_config = extra_hosts_dict
  695. if isinstance(extra_hosts_config, dict):
  696. return extra_hosts_config
  697. raise ConfigError(
  698. "extra_hosts_config \"%s\" must be either a list of strings or a string->string mapping," %
  699. extra_hosts_config
  700. )