Skip to content

Instantly share code, notes, and snippets.

@dvir1994
Created January 12, 2018 18:58
Show Gist options
  • Save dvir1994/2a9ad9bc21df75d31b8378c913c06238 to your computer and use it in GitHub Desktop.
Save dvir1994/2a9ad9bc21df75d31b8378c913c06238 to your computer and use it in GitHub Desktop.
install docker on centos 7
#!/bin/bash
sudo yum install -y yum-utils
sudo yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
sudo yum makecache fast
sudo yum -y install docker-ce
sudo systemctl start docker
sudo docker run hello-world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment