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.
 
 

17 line
324 B

  1. ---
  2. - name: Install host dependencies
  3. community.general.pacman:
  4. name:
  5. - python-docker
  6. - python-dnspython
  7. state: present
  8. update_cache: true
  9. - name: Ensure Docker is installed
  10. community.general.pacman:
  11. name:
  12. - docker
  13. state: present
  14. when: matrix_docker_installation_enabled | bool