2020-03-28 11:39:15 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Install host dependencies
|
2022-10-28 13:20:17 +02:00
|
|
|
community.general.pacman:
|
2020-03-28 11:39:15 +01:00
|
|
|
name:
|
|
|
|
- python-docker
|
|
|
|
- python-dnspython
|
2022-07-18 14:08:35 +03:00
|
|
|
state: present
|
2022-02-05 21:32:54 +01:00
|
|
|
update_cache: true
|
2020-03-28 11:39:15 +01:00
|
|
|
|
|
|
|
- name: Ensure Docker is installed
|
2022-10-28 13:20:17 +02:00
|
|
|
community.general.pacman:
|
2020-03-28 11:39:15 +01:00
|
|
|
name:
|
|
|
|
- docker
|
2022-07-18 14:08:35 +03:00
|
|
|
state: present
|
2022-07-18 11:22:05 +03:00
|
|
|
when: matrix_docker_installation_enabled | bool
|