From 8f1804c9308f662761d26dda32e5493d6e1646fa Mon Sep 17 00:00:00 2001 From: Raphael Nestler Date: Thu, 17 May 2018 17:20:39 +0200 Subject: [PATCH] Update docker-compose version to 1.21.2 See https://github.com/docker/compose/releases/tag/1.21.2 --- README.md | 2 +- defaults/main.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 74fc22e..abec29f 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ The `docker_edition` should be either `ce` (Community Edition) or `ee` (Enterpri Whether to restart the Docker daemon after the Docker package is installed or updated. If this is set to `True`, this role will flush all handlers (run any of the handlers that have been notified by this and any other role up to this point in the play). The default setting helps avoid firewall clashes with Docker rules (e.g. when using custom `iptables` rules or the `geerlingguy.firewall` Ansible role). docker_install_compose: True - docker_compose_version: "1.21.1" + docker_compose_version: "1.21.2" docker_compose_path: /usr/local/bin/docker-compose Docker Compose installation options. diff --git a/defaults/main.yml b/defaults/main.yml index 1df94b1..0c17481 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -7,7 +7,7 @@ docker_restart_on_package_change: True # Docker Compose options. docker_install_compose: True -docker_compose_version: "1.21.1" +docker_compose_version: "1.21.2" docker_compose_path: /usr/local/bin/docker-compose # Used only for Debian/Ubuntu. Switch 'stable' to 'edge' if needed.