Containerd communication process using gRPC

Containerd communication process using gRPC

Creating a container using Containerd ¶ The code below is an example of creating a container using Containerd. First, connect to Containerd using the UNIX domain socket containerd.sock. Containerd is a daemon process that always runs in the background. After that, through the Client object, Containerd gets the latest Debian Linux image and creates a Debian container. Very intuitive and simple, isn’t it? What you can see here is that it communicates with the process through the Client object....

June 14, 2022 · baek9
🇰🇷