Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidwtbuxton/fbf4ef4f64a59ddff9c62d3ad1863f0a to your computer and use it in GitHub Desktop.
Save davidwtbuxton/fbf4ef4f64a59ddff9c62d3ad1863f0a to your computer and use it in GitHub Desktop.
# Setup for Ubuntu 20.04
# ======================
# Install Nomad, Consul, Docker
# -----------------------------
# GPG keys for Nomad and Docker.
curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
# Repos for Nomad and Docker.
sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
# Install Nomad, Consul, Docker.
sudo apt install docker-ce docker-ce-cli containerd.io
sudo apt install nomad consul
@davidwtbuxton
Copy link
Author

This worked for me as of February 2022.

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