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.
 
 

21 lines
411 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. - git
  11. state: latest
  12. update_cache: yes
  13. - name: Ensure Docker is installed
  14. pacman:
  15. name:
  16. - docker
  17. state: latest
  18. when: matrix_docker_installation_enabled|bool