Skip to content

Instantly share code, notes, and snippets.

@jplsightm
Created April 25, 2018 16:55
Show Gist options
  • Save jplsightm/523cfee0f7f058d327f5309bcf0dbcc8 to your computer and use it in GitHub Desktop.
Save jplsightm/523cfee0f7f058d327f5309bcf0dbcc8 to your computer and use it in GitHub Desktop.
Ubuntu - Quick docker setup
sudo apt install -y ssh
sudo apt install -y zsh
sudo apt install -y byobu
sudo apt-get -y update
sudo apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
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"
sudo apt-get update
sudo apt-get install -y docker-ce
sudo usermod -aG docker `whoami`
sudo su - $USER
zsh
docker run hello-world
sudo apt install -y python-pip
pip install --upgrade pip
pip install --user docker-compose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment