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.
|
- ---
-
- - name: Ensure dnf packages are installed
- yum:
- name:
- - "{{ matrix_ntpd_package }}"
- - fuse
- - git
- state: latest
- update_cache: yes
-
- - name: Ensure Docker is installed
- yum:
- name:
- - "{{ matrix_docker_package_name }}"
- state: latest
- when: matrix_docker_installation_enabled|bool
-
- - name: Ensure Docker python library is installed
- pip:
- name: docker
|