From e0648ead2f7b8caec51ac30e85b2977ab9eabb99 Mon Sep 17 00:00:00 2001 From: Jonathan Hanson Date: Sun, 21 May 2017 16:13:08 -0700 Subject: [PATCH] Add installation of the docker python package --- tasks/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tasks/main.yml b/tasks/main.yml index 9abd2ed..0c77a02 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -14,5 +14,8 @@ state: started enabled: yes +- name: Ensure docker Python package is available + pip: name=docker state=present + - include: docker-compose.yml when: docker_install_compose