Created
April 7, 2022 16:01
-
-
Save davidwtbuxton/fbf4ef4f64a59ddff9c62d3ad1863f0a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This worked for me as of February 2022.