-
-
Save victorabraham/59cf14eca8b1aa576c5f3d58bf764c93 to your computer and use it in GitHub Desktop.
Install docker on Ubuntu machine. Execute as sudo
This file contains 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
#!/bin/bash | |
# Install docker | |
apt-get update | |
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 - | |
add-apt-repository \ | |
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \ | |
$(lsb_release -cs) \ | |
stable" | |
apt-get update | |
apt-get install -y docker-ce | |
usermod -aG docker ubuntu | |
# Install docker-compose | |
curl -L https://github.com/docker/compose/releases/download/1.21.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose | |
chmod +x /usr/local/bin/docker-compose | |
# READ MORE: https://docs.docker.com/install/linux/docker-ce/ubuntu/ | |
# To check: grep "cloud-init\[" /var/log/syslog | |
# OR: less /var/log/cloud-init-output.log | |
# Manually add user to docker group | |
# sudo usermod -aG docker $USER |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment