Created
September 15, 2023 16:30
-
-
Save Faheetah/4baf1e413691bc4e7784fad16d6275a9 to your computer and use it in GitHub Desktop.
Install containerd and nerdctl on Ubuntu
This file contains 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
# Note: can also just install nerdctl-full | |
sudo apt-get update | |
sudo apt-get install containerd | |
wget https://github.com/containerd/nerdctl/releases/download/v1.5.0/nerdctl-1.5.0-linux-amd64.tar.gz | |
tar -zxf nerdctl-1.5.0-linux-amd64.tar.gz nerdctl | |
sudo mv nerdctl /usr/bin/nerdctl | |
rm nerdctl-1.5.0-linux-amd64.tar.gz | |
wget https://github.com/containernetworking/plugins/releases/download/v1.3.0/cni-plugins-linux-amd64-v1.3.0.tgz | |
sudo mkdir -p /opt/cni/bin/ | |
sudo tar -zxf cni-plugins-linux-amd64-v1.3.0.tgz -C /opt/cni/bin/ | |
rm cni-plugins-linux-amd64-v1.3.0.tgz | |
# https://github.com/moby/buildkit for building images | |
wget https://github.com/moby/buildkit/releases/download/v0.12.2/buildkit-v0.12.2.linux-amd64.tar.gz | |
tar -zxvf buildkit-v0.12.2.linux-amd64.tar.gz | |
sudo mv bin/* /usr/bin/ | |
rm buildkit-v0.12.2.linux-amd64.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment