Skip to content

Commit

Permalink
[#20] quick script to install docker
Browse files Browse the repository at this point in the history
  • Loading branch information
thewolfpack committed Jun 25, 2018
1 parent b68f0f3 commit 4337448
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions comparison/box-by-box-kvm-docker/install_docker_prereqs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

sudo apt-get update

sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88

sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"

sudo apt-get update

sudo apt-get install docker-ce

0 comments on commit 4337448

Please sign in to comment.