Skip to content

Instantly share code, notes, and snippets.

View sumanth100393's full-sized avatar

sumanth100393

View GitHub Profile
@sumanth100393
sumanth100393 / playbook_centos_install_docker.yaml
Created December 18, 2020 04:54 — 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