sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y
in the terminal.<aside>
💡 How to open your Terminal: right-click on your desktop →Open in Terminal
</aside>
If you have already installed the SGX driver, you can verify by:
ls /dev | grep sgx
in the terminalIf there's no output, you have to download and install it. And verify it again. For FLC ready CPUs and motherboards, the DCAP driver is preferred. Otherwise install the SGX driver.
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 install -y docker-ce docker-ce-cli containerd.io
sudo usermod -aG docker YOUR_UBUNTU_USERNAME
(Replace "[YOUR_UBUNTU_USERNAME]" to the user name you are using, without the brackets)This is how it looks like after it's successfully deployed👇.
<aside> 📖
Reference: Install Docker Engine on Ubuntu
</aside>