Thursday 20 April 2017

Use Ansible in Docker

Requirements

To use this guide you’ll need a working installation of Ansible version 2.1.0 or later.
Requirements on the host that will execute the module:
python >= 2.6
docker-py >= 1.7.0
Docker API >= 1.20

Installation

The docker_container module is a core module, and will ship with Ansible by default.

Usage

Task example that pulls the latest version of the nginx image and runs a container. Bind address and ports are in the example defined as a variable.
---
- name: nginx container
  docker:
    name: nginx
    image: nginx
    state: reloaded
    ports:
    - "::"
    cap_drop: all
    cap_add:
      - setgid
      - setuid
    pull: always
    restart_policy: on-failure
    restart_policy_retry: 3
    volumes:
      - /some/nginx.conf:/etc/nginx/nginx.conf:ro
  tags:
    - docker_container
    - nginx
...

No comments:

Post a Comment

User Interface(UI) for Docker, Portainer

Portainer gives you access to a central overview of your Docker host or Swarm cluster. From the dashboard, you can easily access any manag...