Skip to content

Instantly share code, notes, and snippets.

@fornarat
Created January 31, 2018 17:20
Show Gist options
  • Save fornarat/2cda3243c293f7ab3abfbb45f8400608 to your computer and use it in GitHub Desktop.
Save fornarat/2cda3243c293f7ab3abfbb45f8400608 to your computer and use it in GitHub Desktop.
cmd docker installer
#!/bin/bash
# cmd docker installer
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 -y
apt-get install -y docker-ce
docker run hello-world
#usermod -aG docker $USER
usermod -aG docker ubuntu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment