Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

20 行
375 B

  1. ---
  2. - name: Install host dependencies
  3. pacman:
  4. name:
  5. - python-docker
  6. - ntp
  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