Skip to content

Instantly share code, notes, and snippets.

@Fettah
Fettah / Vagrantfile
Created October 1, 2019 18:59 — forked from rezroo/Vagrantfile
Vagrantfile, multi machine with ssh password less and hostname over private network.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.require_version ">= 1.6.0"
baseip="192.168.187"
boxes = [
{
:name => "master",
@Fettah
Fettah / playbook_centos_install_docker.yaml
Created September 29, 2019 09:41 — 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