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/bash | |
| sudo apt-get install python-pip | |
| sudo pip install virtualenv | |
| mkdir dcos && cd dcos | |
| curl -O https://downloads.dcos.io/dcos-cli/install.sh | |
| bash install.sh . http://192.168.50.30:8080 | |
| dcos config prepend package.sources https://github.com/mesosphere/universe/archive/version-2.x.zip |
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/bash | |
| sudo apt-get update -y | |
| sudo apt-get install -y apt-transport-https ca-certificates | |
| sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | |
| sudo echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main" > /etc/apt/sources.list.d/docker.list | |
| sudo apt-get -y update | |
| sudo apt-get -y install linux-image-extra-$(uname -r) | |
| sudo apt-get -y update |
NewerOlder