Docker
INSTALL sudo yum install -y yum-utils sudo yum-config-manager –add-repo https://download.docker.com/linux/centos/docker-ce.repo sudo yum install docker-ce sudo systemctl enable docker sudo systemctl start docker Add your current user to the Docker group sudo usermod -a -G docker cloud_user Create your first container using the hello-world image docker run hello-world docker-composer install: curl -L “https://github.com/docker/compose/releases/download/1.26.0/docker-compose-$(uname -s)-$(uname -m)” -o …