Skip to content

Instantly share code, notes, and snippets.

@dolo2021
dolo2021 / playbook_centos_install_docker.yaml
Created February 17, 2023 21:29 — 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