Skip to content

Instantly share code, notes, and snippets.

@theuves
Last active May 7, 2020 15:55
Show Gist options
  • Save theuves/f177e77715460354e2d1fc96270ff931 to your computer and use it in GitHub Desktop.
Save theuves/f177e77715460354e2d1fc96270ff931 to your computer and use it in GitHub Desktop.
Script to install Docker on Ubuntu.
#!/usr/bin/env bash
sudo apt update -y
sudo apt install docker.io
sudo apt install docker-compose
sudo usermod -aG docker $USER
@theuves
Copy link
Author

theuves commented May 7, 2020

curl https://gist.githubusercontent.com/theuves/f177e77715460354e2d1fc96270ff931/raw/a4ede55468b285cbdb5e5a76919e9761f4adda5e/install-docker.sh | sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment