Skip to content

Instantly share code, notes, and snippets.

@lytedev
Last active March 7, 2019 15:06
Show Gist options
  • Save lytedev/5ca44ae86c1d969bc24a65f96b7e7f4a to your computer and use it in GitHub Desktop.
Save lytedev/5ca44ae86c1d969bc24a65f96b7e7f4a to your computer and use it in GitHub Desktop.
Common Ubuntu Installation Scripts

Ubuntu 18.04 LTS Installation Scripts

Docker

sudo apt update
sudo apt install apt-transport-https ca-certificates curl 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 bionic stable"
sudo apt update
sudo apt install docker-ce -y
sudo apt-get install python3 python3-pip -y
sudo pip3 install docker-compose

Elixir

wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && sudo dpkg -i erlang-solutions_1.0_all.deb
sudo apt-get update
sudo apt-get install esl-erlang
sudo apt-get install elixir
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment