summaryrefslogtreecommitdiff
path: root/docker/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'docker/client.py')
-rw-r--r--docker/client.py138
1 files changed, 5 insertions, 133 deletions
diff --git a/docker/client.py b/docker/client.py
index 64ce54e..c7abd87 100644
--- a/docker/client.py
+++ b/docker/client.py
@@ -105,134 +105,6 @@ class Client(requests.Session):
return response.content
return response.text
- def _container_config(self, image, command, hostname=None, user=None,
- detach=False, stdin_open=False, tty=False,
- mem_limit=0, ports=None, environment=None, dns=None,
- volumes=None, volumes_from=None,
- network_disabled=False, entrypoint=None,
- cpu_shares=None, working_dir=None,
- domainname=None, memswap_limit=0, cpuset=None,
- host_config=None, mac_address=None):
- if isinstance(command, six.string_types):
- command = shlex.split(str(command))
- if isinstance(environment, dict):
- environment = [
- six.text_type('{0}={1}').format(k, v)
- for k, v in six.iteritems(environment)
- ]
-
- if isinstance(mem_limit, six.string_types):
- if len(mem_limit) == 0:
- mem_limit = 0
- else:
- units = {'b': 1,
- 'k': 1024,
- 'm': 1024 * 1024,
- 'g': 1024 * 1024 * 1024}
- suffix = mem_limit[-1].lower()
-
- # Check if the variable is a string representation of an int
- # without a units part. Assuming that the units are bytes.
- if suffix.isdigit():
- digits_part = mem_limit
- suffix = 'b'
- else:
- digits_part = mem_limit[:-1]
-
- if suffix in units.keys() or suffix.isdigit():
- try:
- digits = int(digits_part)
- except ValueError:
- message = ('Failed converting the string value for'
- ' mem_limit ({0}) to a number.')
- formatted_message = message.format(digits_part)
- raise errors.DockerException(formatted_message)
-
- mem_limit = digits * units[suffix]
- else:
- message = ('The specified value for mem_limit parameter'
- ' ({0}) should specify the units. The postfix'
- ' should be one of the `b` `k` `m` `g`'
- ' characters')
- raise errors.DockerException(message.format(mem_limit))
-
- if isinstance(ports, list):
- exposed_ports = {}
- for port_definition in ports:
- port = port_definition
- proto = 'tcp'
- if isinstance(port_definition, tuple):
- if len(port_definition) == 2:
- proto = port_definition[1]
- port = port_definition[0]
- exposed_ports['{0}/{1}'.format(port, proto)] = {}
- ports = exposed_ports
-
- if isinstance(volumes, six.string_types):
- volumes = [volumes, ]
-
- if isinstance(volumes, list):
- volumes_dict = {}
- for vol in volumes:
- volumes_dict[vol] = {}
- volumes = volumes_dict
-
- if volumes_from:
- if not isinstance(volumes_from, six.string_types):
- volumes_from = ','.join(volumes_from)
- else:
- # Force None, an empty list or dict causes client.start to fail
- volumes_from = None
-
- attach_stdin = False
- attach_stdout = False
- attach_stderr = False
- stdin_once = False
-
- if not detach:
- attach_stdout = True
- attach_stderr = True
-
- if stdin_open:
- attach_stdin = True
- stdin_once = True
-
- if utils.compare_version('1.10', self._version) >= 0:
- message = ('{0!r} parameter has no effect on create_container().'
- ' It has been moved to start()')
- if dns is not None:
- raise errors.DockerException(message.format('dns'))
- if volumes_from is not None:
- raise errors.DockerException(message.format('volumes_from'))
-
- return {
- 'Hostname': hostname,
- 'Domainname': domainname,
- 'ExposedPorts': ports,
- 'User': user,
- 'Tty': tty,
- 'OpenStdin': stdin_open,
- 'StdinOnce': stdin_once,
- 'Memory': mem_limit,
- 'AttachStdin': attach_stdin,
- 'AttachStdout': attach_stdout,
- 'AttachStderr': attach_stderr,
- 'Env': environment,
- 'Cmd': command,
- 'Dns': dns,
- 'Image': image,
- 'Volumes': volumes,
- 'VolumesFrom': volumes_from,
- 'NetworkDisabled': network_disabled,
- 'Entrypoint': entrypoint,
- 'CpuShares': cpu_shares,
- 'Cpuset': cpuset,
- 'WorkingDir': working_dir,
- 'MemorySwap': memswap_limit,
- 'HostConfig': host_config,
- 'MacAddress': mac_address
- }
-
def _post_json(self, url, data, **kwargs):
# Go <1.1 can't unserialize null to a string
# so we do this disgusting thing here.
@@ -547,11 +419,11 @@ class Client(requests.Session):
'host_config is not supported in API < 1.15'
)
- config = self._container_config(
- image, command, hostname, user, detach, stdin_open, tty, mem_limit,
- ports, environment, dns, volumes, volumes_from, network_disabled,
- entrypoint, cpu_shares, working_dir, domainname, memswap_limit,
- cpuset, host_config, mac_address
+ config = utils.create_container_config(
+ self._version, image, command, hostname, user, detach, stdin_open,
+ tty, mem_limit, ports, environment, dns, volumes, volumes_from,
+ network_disabled, entrypoint, cpu_shares, working_dir, domainname,
+ memswap_limit, cpuset, host_config, mac_address
)
return self.create_container_from_config(config, name)