Getting Started with Docker

Ansible offers the following modules for orchestrating Docker containers:

docker_service
Use your existing Docker compose files to orchestrate containers on a single Docker daemon or onSwarm. Supports compose versions 1 and 2.
docker_container
Manages the container lifecycle by providing the ability to create, update, stop, start and destroy acontainer.
docker_image
Provides full control over images, including: build, pull, push, tag and remove.
docker_image_facts
Inspects one or more images in the Docker host’s image cache, providing the information as facts for makingdecision or assertions in a playbook.
docker_login
Authenticates with Docker Hub or any Docker registry and updates the Docker Engine config file, whichin turn provides password-free pushing and pulling of images to and from the registry.
docker (dynamic inventory)
Dynamically builds an inventory of all the available containers from a set of one or more Docker hosts.

Ansible 2.1.0 includes major updates to the Docker modules, marking the start of a project to create a complete andintegrated set of tools for orchestrating containers. In addition to the above modules, we are also working on thefollowing:

Still using Dockerfile to build images? Check out ansible-container,and start building images from your Ansible playbooks.

Use the shipit command in ansible-containerto launch your docker-compose file on OpenShift. Go from an app on your laptop to a fullyscalable app in the cloud in just a few moments.

There’s more planned. See the latest ideas and thinking at the Ansible proposal repo.

Requirements

Using the docker modules requires having the Docker SDK for Pythoninstalled on the host running Ansible. You will need to have >= 1.7.0 installed. For Python 2.7 orPython 3, you can install it as follows:

  1. $ pip install docker

For Python 2.6, you need a version before 2.0. For these versions, the SDK was called docker-py,so you need to install it as follows:

  1. $ pip install 'docker-py>=1.7.0'

Please note that only one of docker and docker-py must be installed. Installing both will result ina broken installation. If this happens, Ansible will detect it and inform you about it:

  1. Cannot have both the docker-py and docker python modules installed together as they use the same
  2. namespace and cause a corrupt installation. Please uninstall both packages, and re-install only
  3. the docker-py or docker python module. It is recommended to install the docker module if no support
  4. for Python 2.6 is required. Please note that simply uninstalling one of the modules can leave the
  5. other module in a broken state.

The docker_service module also requires docker-compose

  1. $ pip install 'docker-compose>=1.7.0'

Connecting to the Docker API

You can connect to a local or remote API using parameters passed to each task or by setting environment variables.The order of precedence is command line parameters and then environment variables. If neither a command lineoption or an environment variable is found, a default value will be used. The default values are provided underParameters

Parameters

Control how modules connect to the Docker API by passing the following parameters:

docker_host
The URL or Unix socket path used to connect to the Docker API. Defaults to unix://var/run/docker.sock.To connect to a remote host, provide the TCP connection string. For example: tcp://192.0.2.23:2376. IfTLS is used to encrypt the connection to the API, then the module will automatically replace ‘tcp’ in theconnection URL with ‘https’.
api_version
The version of the Docker API running on the Docker Host. Defaults to the latest version of the API supportedby docker-py.
timeout
The maximum amount of time in seconds to wait on a response from the API. Defaults to 60 seconds.
tls
Secure the connection to the API by using TLS without verifying the authenticity of the Docker host server.Defaults to False.
tls_verify
Secure the connection to the API by using TLS and verifying the authenticity of the Docker host server.Default is False.
cacert_path
Use a CA certificate when performing server verification by providing the path to a CA certificate file.
cert_path
Path to the client’s TLS certificate file.
key_path
Path to the client’s TLS key file.
tls_hostname
When verifying the authenticity of the Docker Host server, provide the expected name of the server. Defaultsto ‘localhost’.
ssl_version
Provide a valid SSL version number. Default value determined by docker-py, which at the time of this writingwas 1.0

Environment Variables

Control how the modules connect to the Docker API by setting the following variables in the environment of the hostrunning Ansible:

DOCKER_HOST
The URL or Unix socket path used to connect to the Docker API.
DOCKER_API_VERSION
The version of the Docker API running on the Docker Host. Defaults to the latest version of the API supportedby docker-py.
DOCKER_TIMEOUT
The maximum amount of time in seconds to wait on a response from the API.
DOCKER_CERT_PATH
Path to the directory containing the client certificate, client key and CA certificate.
DOCKER_SSL_VERSION
Provide a valid SSL version number.
DOCKER_TLS
Secure the connection to the API by using TLS without verifying the authenticity of the Docker Host.
DOCKER_TLS_VERIFY
Secure the connection to the API by using TLS and verify the authenticity of the Docker Host.

Dynamic Inventory Script

The inventory script generates dynamic inventory by making API requests to one or more Docker APIs. It’s dynamicbecause the inventory is generated at run-time rather than being read from a static file. The script generates theinventory by connecting to one or many Docker APIs and inspecting the containers it finds at each API. Which APIs thescript contacts can be defined using environment variables or a configuration file.

Groups

The script will create the following host groups:

  • container id
  • container name
  • container short id
  • imagename (image<image name>)
  • docker_host
  • running
  • stopped

Examples

You can run the script interactively from the command line or pass it as the inventory to a playbook. Here are fewexamples to get you started:

  1. # Connect to the Docker API on localhost port 4243 and format the JSON output
  2. DOCKER_HOST=tcp://localhost:4243 ./docker.py --pretty
  3.  
  4. # Any container's ssh port exposed on 0.0.0.0 will be mapped to
  5. # another IP address (where Ansible will attempt to connect via SSH)
  6. DOCKER_DEFAULT_IP=192.0.2.5 ./docker.py --pretty
  7.  
  8. # Run as input to a playbook:
  9. ansible-playbook -i ~/projects/ansible/contrib/inventory/docker.py docker_inventory_test.yml
  10.  
  11. # Simple playbook to invoke with the above example:
  12.  
  13. - name: Test docker_inventory, this will not connect to any hosts
  14. hosts: all
  15. gather_facts: no
  16. tasks:
  17. - debug: msg="Container - {{ inventory_hostname }}"

Configuration

You can control the behavior of the inventory script by defining environment variables, orcreating a docker.yml file (sample provided in ansible/contrib/inventory). The order of precedence is the docker.ymlfile and then environment variables.

Environment Variables

To connect to a single Docker API the following variables can be defined in the environment to control the connectionoptions. These are the same environment variables used by the Docker modules.

DOCKER_HOST
The URL or Unix socket path used to connect to the Docker API. Defaults to unix://var/run/docker.sock.
DOCKER_API_VERSION:
The version of the Docker API running on the Docker Host. Defaults to the latest version of the API supportedby docker-py.
DOCKER_TIMEOUT:
The maximum amount of time in seconds to wait on a response from the API. Defaults to 60 seconds.
DOCKER_TLS:
Secure the connection to the API by using TLS without verifying the authenticity of the Docker host server.Defaults to False.
DOCKER_TLS_VERIFY:
Secure the connection to the API by using TLS and verifying the authenticity of the Docker host server.Default is False
DOCKER_TLS_HOSTNAME:
When verifying the authenticity of the Docker Host server, provide the expected name of the server. Defaultsto localhost.
DOCKER_CERT_PATH:
Path to the directory containing the client certificate, client key and CA certificate.
DOCKER_SSL_VERSION:
Provide a valid SSL version number. Default value determined by docker-py, which at the time of this writingwas 1.0

In addition to the connection variables there are a couple variables used to control the execution and output of thescript:

DOCKER_CONFIG_FILE
Path to the configuration file. Defaults to ./docker.yml.
DOCKER_PRIVATE_SSH_PORT:
The private port (container port) on which SSH is listening for connections. Defaults to 22.
DOCKER_DEFAULT_IP:
The IP address to assign to ansible_host when the container’s SSH port is mapped to interface ‘0.0.0.0’.

Configuration File

Using a configuration file provides a means for defining a set of Docker APIs from which to build an inventory.

The default name of the file is derived from the name of the inventory script. By default the script will look forbasename of the script (i.e. docker) with an extension of ‘.yml’.

You can also override the default name of the script by defining DOCKER_CONFIG_FILE in the environment.

Here’s what you can define in docker_inventory.yml:

defaults
Defines a default connection. Defaults will be taken from this and applied to any values not providedfor a host defined in the hosts list.
hosts
If you wish to get inventory from more than one Docker host, define a hosts list.

For the default host and each host in the hosts list define the following attributes:

  1. host:
  2. description: The URL or Unix socket path used to connect to the Docker API.
  3. required: yes
  4.  
  5. tls:
  6. description: Connect using TLS without verifying the authenticity of the Docker host server.
  7. default: false
  8. required: false
  9.  
  10. tls_verify:
  11. description: Connect using TLS without verifying the authenticity of the Docker host server.
  12. default: false
  13. required: false
  14.  
  15. cert_path:
  16. description: Path to the client's TLS certificate file.
  17. default: null
  18. required: false
  19.  
  20. cacert_path:
  21. description: Use a CA certificate when performing server verification by providing the path to a CA certificate file.
  22. default: null
  23. required: false
  24.  
  25. key_path:
  26. description: Path to the client's TLS key file.
  27. default: null
  28. required: false
  29.  
  30. version:
  31. description: The Docker API version.
  32. required: false
  33. default: will be supplied by the docker-py module.
  34.  
  35. timeout:
  36. description: The amount of time in seconds to wait on an API response.
  37. required: false
  38. default: 60
  39.  
  40. default_ip:
  41. description: The IP address to assign to ansible_host when the container's SSH port is mapped to interface
  42. '0.0.0.0'.
  43. required: false
  44. default: 127.0.0.1
  45.  
  46. private_ssh_port:
  47. description: The port containers use for SSH
  48. required: false
  49. default: 22