Created
January 26, 2016 15:26
-
-
Save jakexks/ece5d1e23f4b3d274e16 to your computer and use it in GitHub Desktop.
Kubernetes Dashboard Blog Post
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-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | |
| sudo bash -c "echo deb https://apt.dockerproject.org/repo ubuntu-$(lsb_release --codename | cut -f2) main > /etc/apt/sources.list.d/docker.list" | |
| sudo apt-get update && sudo apt-get install docker-engine |
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 | |
| wget -O /tmp/go.tar.gz https://storage.googleapis.com/golang/go1.5.3.linux-amd64.tar.gz | |
| sudo tar -C /usr/local -xzf /tmp/go.tar.gz | |
| echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.profile | |
| mkdir -p ~/.gopath | |
| echo "export GOPATH=~/.gopath" >> ~/.profile | |
| rm /tmp/go.tar.gz |
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 add-apt-repository ppa:webupd8team/java | |
| sudo apt-get update | |
| sudo apt-get install oracle-java7-installer |
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 && sudo apt-get install build-essential | |
| wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.30.2/install.sh | bash | |
| source ~/.nvm/nvm.sh | |
| nvm install 4.2.2 | |
| source ~/.bashrc | |
| nvm use 4.2.2 | |
| npm install gulp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment