Skip to content

Instantly share code, notes, and snippets.

@gitarun786
gitarun786 / playbook_centos_install_docker.yaml
Created April 26, 2020 14:40 — forked from yonglai/playbook_centos_install_docker.yaml
An Ansible playbook to install docker-ce on Centos
---
- name: Install docker
gather_facts: No
hosts: default
tasks:
- name: Install yum utils
yum:
name: yum-utils
state: latest