Before starting, ensure you have the following:
Connect to your VPS and update the system:
sudo apt-get update && sudo apt-get upgrade -y
sudo apt-get install build-essential jq wget git -y
Download and install Docker:
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common -y
curl -fsSL <https://download.docker.com/linux/ubuntu/gpg> | sudo apt-key add -
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 -y
sudo usermod -aG docker ${USER}
Verify the installation:
docker --version
Clone the Enso repository and checkout the latest release:
git clone <https://github.com/enso-org/enso.git>
cd enso