Last active
May 7, 2020 15:55
-
-
Save theuves/f177e77715460354e2d1fc96270ff931 to your computer and use it in GitHub Desktop.
Script to install Docker on Ubuntu.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
sudo apt update -y | |
sudo apt install docker.io | |
sudo apt install docker-compose | |
sudo usermod -aG docker $USER |
Author
theuves
commented
May 7, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment