Skip to content

Instantly share code, notes, and snippets.

@newsworthy39
Forked from Faheetah/install.sh
Last active January 21, 2025 15:57
Show Gist options
  • Save newsworthy39/0d7234fd050e7086245a28a0fb9e32e3 to your computer and use it in GitHub Desktop.
Save newsworthy39/0d7234fd050e7086245a28a0fb9e32e3 to your computer and use it in GitHub Desktop.
Install containerd and nerdctl on Ubuntu
# Note: can also just install nerdctl-full
sudo apt-get update
sudo apt-get install containerd iptables
wget https://github.com/containerd/nerdctl/releases/download/v2.0.1/nerdctl-2.0.1-linux-amd64.tar.gz
tar -zxf nerdctl-*-linux-amd64.tar.gz nerdctl
sudo mv nerdctl /usr/bin/nerdctl
rm -rf nerdctl*
wget https://github.com/containernetworking/plugins/releases/download/v1.6.1/cni-plugins-linux-amd64-v1.6.1.tgz
sudo mkdir -p /opt/cni/bin/
sudo tar -zxf cni-plugins-linux-amd64-v1.6.1.tgz -C /opt/cni/bin/
rm cni-plugins-linux-amd64-*.tgz
# amd64 https://github.com/moby/buildkit for building images
wget https://github.com/moby/buildkit/releases/download/v0.18.1/buildkit-v0.18.1.linux-amd64.tar.gz
# arm64 https://github.com/moby/buildkit for building images
wget https://github.com/moby/buildkit/releases/download/v0.18.1/buildkit-v0.18.1.linux-arm64.tar.gz
tar -zxvf buildkit-v0.18.1.linux-amd64.tar.gz
sudo mv bin/* /usr/bin/
rm buildkit-*.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment