Skip to content

Instantly share code, notes, and snippets.

@om26er
Last active August 22, 2018 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save om26er/1f3996e0d70246dd28b89972505f9a55 to your computer and use it in GitHub Desktop.
Save om26er/1f3996e0d70246dd28b89972505f9a55 to your computer and use it in GitHub Desktop.
Install latest Docker on Ubuntu Server
#!/bin/sh
set -ev
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt install docker-ce -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment