Getting started With Containerd From Scratch on Ubuntu 18.4 or 20.4

DevOps Engineer At OD10Ventures. A Kubernetes Administrator. Contributor on opensource. I Talk about K8s, containers, DevOps, and CNCF Tools.
There are a very Simple Few Steps to install containerd So If you are a beginner and even if you Don't Know What is Container Runtime then Stick with Me We will play with containerd
Open the Terminal and run the command
sudo apt-get install containerd
Then We have to pull the image from the Docker registry
sudo ctr image pull docker.io/library/redis:latest
List out The List Of Images using the Following command:-
sudo ctr images list
Then Create a Container using the Following command:-
sudo ctr container create docker.io/library/redis:latest redis
Get The List Of containers using the following command:-
sudo ctr container list
At last Delete, The Container using this command
sudo ctr container delete redis
Don't forget the Last Step Neither this could happen to you

Complete Operation:-

Thanks for Stick with me.




