matrix-docker-ansible-deploy/roles/custom/matrix-base/tasks/server_base/setup_archlinux.yml

17 lines
324 B
YAML

---
- name: Install host dependencies
community.general.pacman:
name:
- python-docker
- python-dnspython
state: present
update_cache: true
- name: Ensure Docker is installed
community.general.pacman:
name:
- docker
state: present
when: matrix_docker_installation_enabled | bool