containerd
containerd 1 2 3 4 5 6 7 8 9 10 11 12 13 14 # archlinux install containerd pacman -S containerd runc nerdctl cni-plugins buildkit # containerd config sudo mkdir /etc/containerd containerd config default | sudo tee /etc/containerd/config.toml #sudo sed -i 's/SystemdCgroup \= false/SystemdCgroup \= true/g' /etc/containerd/config.toml sudo systemctl daemon-reload sudo systemctl enable --now buildkit sudo systemctl enable --now containerd sudo nerdctl pull hello-world sudo nerdctl run --rm hello-world