Friday, October 25, 2019

How to install the docker on multiple hosts using ansible

- hosts: home
  tasks:
  - name: yum
    yum:
      name: "{{ item }}"
      state: present
    with_items:
    - docker

No comments:

Post a Comment