Last active
January 2, 2021 07:51
-
-
Save duccas/cb9eff63294a96bcb63a4590c1dc238c 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
#!/bin/bash | |
sudo apt update && sudo apt upgrade -y \ | |
&& sudo apt install docker.io curl -y \ | |
&& sudo systemctl start docker \ | |
&& sudo systemctl enable docker \ | |
&& sudo curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose \ | |
&& sudo chmod +x /usr/local/bin/docker-compose \ | |
&& sudo docker-compose --version \ | |
&& sudo apt-get install build-essential ocaml ocamlbuild automake autoconf libtool wget python libssl-dev git cmake perl tmux ufw gcc unzip zip jq -y | |
echo "--------ALL COMPONENTS INSTALLED--------" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment