Skip to content

Instantly share code, notes, and snippets.

@monester
Created June 10, 2018 13:01
Show Gist options
  • Save monester/bc2b5a87193eadc7d74e07b62b7d77b3 to your computer and use it in GitHub Desktop.
Save monester/bc2b5a87193eadc7d74e07b62b7d77b3 to your computer and use it in GitHub Desktop.
install-docker-ce-ubuntu.sh
# https://docs.docker.com/install/linux/docker-ce/ubuntu/
sudo apt-get install \
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) \
test"
apt-get update
apt-get install docker-ce
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment