Skip to content

Instantly share code, notes, and snippets.

@gaiusH
gaiusH / playbook_centos_install_docker.yaml
Created April 4, 2023 17:44 — 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