Skip to main content

Managing Docker images, containers, and their dependencies in Python.

Project description

Docker-Map

Managing Docker images, containers, and their dependencies in Python.

Project: https://github.com/merll/docker-map

Docs: https://docker-map.readthedocs.io/en/latest/

Overview

This package provides tools for building Docker images, create containers, connect dependent resources, and run them in development as well as production environments.

The library builds on functionality of the Docker Remote API client for Python, docker-py. Its main target is to reduce the repetitive and error-prone code that is required for creating and connecting containers in a non-trivial stack. It can be used standalone for custom orchestration or for enhancing available deployment / remote execution utilities (see Docker-Fabric, Salt Container-Map).

Containers and their dependencies are configured object-based, through Python dictionaries, or YAML files.

Building images

Writing Dockerfiles is not hard. However, it only allows for using variable context to a limited extent. For example, you may want to re-define directory paths in your project, without having to adjust it in multiple places; or you keep frequently reoccurring tasks (e.g. creating system user accounts) in your Dockerfile, and would like to use templates rather than copy & paste.

Dockerfiles

A DockerFile object generates a Dockerfile, that can either be saved locally or sent off to Docker through the remote API. Supports common commands such as addfile (ADD) or run, but also formats CMD and ENTRYPOINT appropriately for running a shell or exec command.

Docker file context

DockerContext generates a Docker context tarball, that can be sent to the remote API. Its main purpose is to add files from DockerFile automatically, so that the Dockerfile and the context tarball are consistent.

Creating, connecting, and running containers

This package reduces repetitions of names and paths in API commands, by introducing the following main features:

  • Automatically create, configure, and assign shared volumes.

  • Automatically update containers if their shared volumes are inconsistent, their image, or their configuration has been updated.

  • Use alias names instead of paths to bind host volumes to container shares.

  • Automatically create and start containers when their dependent containers are started.

Container configuration

ContainerConfiguration objects keep the elements of a configured container. Their main elements are:

  • image: Docker image to base the container on (default is identical to container name).

  • clients: Optional list of clients to run the identical container configuration on.

  • instances: Can generate multiple instances of a container with varying host mappings; by default there is one main instance of each container.

  • shares: Volumes that are simply shared by the container, only for the purpose of keeping data separate from the container instance, or for linking the entire container to another.

  • binds: Host volume mappings. Uses alias names instead of directory paths.

  • uses: Can be names of other containers, or volumes shared by another volume through attaches. Has the same effect as the volumes_from argument in the API, but using alias names and automatically resolving these to paths.

  • links: For container linking. Container names are translated to instance name on the map.

  • attaches: Generates a separate container for the purpose of sharing data with another one, assigns file system permissions as set in permissions and user. This makes configuration of sockets very easy.

  • exposes: Configures port bindings for linked containers and on host interfaces.

  • exec_commands: Launches commands on containers after they have been created and started.

  • create_options and host_config provide the possibility to add further keyword arguments such as command or entrypoint, which are passed through to the docker-py client.

Container maps

ContainerMap objects contain three sets of elements:

  1. Container names, each associated with a ContainerConfiguration.

  2. Volumes, mapping shared directory paths to alias names.

  3. Host shares, mapping host directory paths to alias names.

Clients, as defined in a ContainerConfiguration, can also be set globally on map level.

ContainerConfiguration instances and their elements can be created and used in a dictionary-like or attribute syntax, e.g. container_map.containers.container_name.uses or container_map.containers['container_name']['uses']. Volume aliases are stored in container_map.volumes and host binds in container_map.host; they support the same syntax variations as containers.

Client configuration

ClientConfiguration objects allow for a host-specific management of parameters, such as service URL and timeout. For example, the interfaces property translates the exposes setting for a configuration on each host into a port binding argument with the local address.

Combining the elements

MappingDockerClient applies one or multiple ContainerMap instances to one or multiple Docker clients. A container on the map can easily be created with all its dependencies by running client.create('container_name').

Running the container can be as easy as client.start('container_name') or can be enhanced with custom parameters such as client.start('container_name', expose={80: 80}).

If all configuration is stored on the map, creation and start are combined in client.startup('container_name').

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

docker-map-1.1.1.tar.gz (112.1 kB view details)

Uploaded Source

Built Distribution

docker_map-1.1.1-py3.7.egg (357.1 kB view details)

Uploaded Source

File details

Details for the file docker-map-1.1.1.tar.gz.

File metadata

  • Download URL: docker-map-1.1.1.tar.gz
  • Upload date:
  • Size: 112.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for docker-map-1.1.1.tar.gz
Algorithm Hash digest
SHA256 f4c2f1b85e0648c00b5493f6747bd3f724a1211d761bb97f7bd1163f64ac73b9
MD5 16750f2a753128edd874c5e6efd40493
BLAKE2b-256 ba3c45ed6477b9170bb99bef0b580978d96507ac8fbf6aa50e5f9853ec57aa1f

See more details on using hashes here.

File details

Details for the file docker_map-1.1.1-py3.7.egg.

File metadata

  • Download URL: docker_map-1.1.1-py3.7.egg
  • Upload date:
  • Size: 357.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for docker_map-1.1.1-py3.7.egg
Algorithm Hash digest
SHA256 c03d1f8e51dff631f367bfb55d990ba39c24777bca3c5cd5caa26123f0d0e7a6
MD5 396a89ebc12f82b2c708e4599f726932
BLAKE2b-256 057c491fe9ca98d7272f444f7ddf97704d1eb6ffe785e18a62df88478be5045a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page