open-nomad/scripts/vagrant-linux-priv-docker.sh
Michael Schurter d5f0a94260 vagrant: fix docker install script
The key fingerprint doesn't seem to have changed, but something about
the old key installation command failed for me and broke vagrant up.
2020-07-23 10:09:46 -07:00

22 lines
550 B
Bash
Executable file

#!/usr/bin/env bash
# Source: https://docs.docker.com/engine/install/ubuntu/
# Add the Docker repository
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
# Update with i386, Go and Docker
apt-get update
apt-get install -y docker-ce docker-ce-cli containerd.io
# Restart Docker in case it got upgraded
systemctl restart docker.service
# Ensure Docker can be used by vagrant user
usermod -aG docker vagrant