Last active
May 10, 2018 20:42
-
-
Save MatteoJoliveau/5251ba34508d21201e28d7e885e3d17a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
sudo yum install -y yum-utils device-mapper-persistent-data lvm2 | |
sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo | |
sudo yum install docker-ce -y | |
sudo systemctl start docker | |
sudo systemctl enable docker | |
sudo yum install iscsi-initiator-utils -y | |
sudo docker run -d --restart=unless-stopped -p 8080:80 -p 8443:443 rancher/rancher |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment