Created
January 30, 2020 10:03
-
-
Save lordlinus/17a187b3e5bb7399bccd081e2e2ab3a3 to your computer and use it in GitHub Desktop.
This file contains 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
apt-get install \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ | |
gnupg-agent \ | |
software-properties-common -y | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository \ | |
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \ | |
$(lsb_release -cs) \ | |
stable" | |
apt-get install docker-ce docker-ce-cli containerd.io -y | |
apt-get install docker-compose python -y | |
mkdir cbd-local | |
cd cbd-local | |
curl -s https://raw.githubusercontent.com/hortonworks/cloudbreak-deployer/master/install-dev | sh && cbd --version | |
cbd update | |
echo export PUBLIC_IP=localhost >> Profile | |
echo export UAA_DEFAULT_USER_PW=somepassword >> Profile | |
cbd update | |
cbd start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment