Matrix Docker Ansible eploy
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

17 行
283 B

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