Skip to content

Instantly share code, notes, and snippets.

View stefjay's full-sized avatar

Stefan Jay stefjay

  • Phoenix, AZ
View GitHub Profile
@stefjay
stefjay / playbook_centos_install_docker.yaml
Created July 4, 2020 17:13 — 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