Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 819 Bytes

INSTALL.md

File metadata and controls

30 lines (19 loc) · 819 Bytes

UBUNTU INSTALL

Install rust

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Install deps

sudo apt-get update -y && sudo apt-get install -y wget gcc build-essential

Install docker

sudo apt-get install \
    ca-certificates \
    curl \
    gnupg \
    lsb-release

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg

echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
  $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io

Install docker compose

sudo apt-get install docker-compose