Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 lines
399 B

  1. ---
  2. - name: Install host dependencies
  3. pacman:
  4. name:
  5. - python-docker
  6. - "{{ matrix_ntpd_package }}"
  7. # TODO This needs to be verified. Which version do we need?
  8. - fuse3
  9. - python-dnspython
  10. state: latest
  11. update_cache: yes
  12. - name: Ensure Docker is installed
  13. pacman:
  14. name:
  15. - docker
  16. state: latest
  17. when: matrix_docker_installation_enabled|bool