Add python package for docker

Ansible requires python-docker package to control docker daemon
trough playbook.

Change-Id: I34fc3af8a72ba16165ea9521e85bbd9db0b3d565
This commit is contained in:
Roman Gorshunov 2020-02-07 17:50:56 +01:00
parent 9861b5e627
commit b7942e78bf
1 changed files with 4 additions and 0 deletions

View File

@ -15,6 +15,10 @@
- hosts: primary
tasks:
- name: Install python-docker module
apt:
name: python-docker
state: present
- name: Publish images
block:
- docker_login: