Skip to content

Instantly share code, notes, and snippets.

@alborq
Forked from devster/ubuntu_install_docker.sh
Last active March 23, 2021 10:23
Show Gist options
  • Save alborq/23f3d243cc41f4e858b1796e2d029874 to your computer and use it in GitHub Desktop.
Save alborq/23f3d243cc41f4e858b1796e2d029874 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
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 | apt-key add -
apt-key fingerprint 0EBFCD88
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
curl -L https://github.com/docker/compose/releases/download/1.28.5/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
groupadd docker
gpasswd -a $(getent passwd "1000" | cut -d: -f1) docker
newgrp docker
@alborq
Copy link
Author

alborq commented Jun 28, 2018

curl -sL https://gist.githubusercontent.com/alborq/23f3d243cc41f4e858b1796e2d029874/raw/a2cb5f3b514a6a64d51da964ec53e4e8134e1ec2/ubuntu_install_docker.sh | sudo bash

@alborq
Copy link
Author

alborq commented Jun 28, 2018

Use apt-cache madison docker-ce to show all version
Install with sudo apt-get install docker-ce=18.03.1~ce-0~ubuntu for exemple

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