#!/bin/bash
touch /root/starting_run
yum update -y
yum -y install docker-engine git
setenforce 0
systemctl daemon-reload
systemctl enable docker
usermod -a -G docker opc
systemctl start docker
yum clean all
touch /root/run_complete
