AKAI TSUKI

System development or Technical something

2018-08-05から1日間の記事一覧

Install docker using ansible.

I create playbook file "docker_install.yml" to install docker-ce. --- - name: Install Docker hosts: grp_node tasks: - name: Install package needed for docker-ce yum: name: '{{ item }}' state: installed with_items: - "yum-utils" - "device-m…