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
396 B

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