From 0ad827077270c9e3f481ab24ee4a9ba8d553f551 Mon Sep 17 00:00:00 2001 From: Archana Shinde Date: Tue, 20 Aug 2019 16:02:33 -0700 Subject: [PATCH] shimv2: Add instruction to pull image first Running the container with `ctr` when the image is not present on the system gives an error. Fixes #536 Signed-off-by: Archana Shinde --- how-to/containerd-kata.md | 1 + 1 file changed, 1 insertion(+) diff --git a/how-to/containerd-kata.md b/how-to/containerd-kata.md index 8c6f607b01..1ed1db3e15 100644 --- a/how-to/containerd-kata.md +++ b/how-to/containerd-kata.md @@ -326,6 +326,7 @@ debug: true To run a container with Kata Containers through the containerd command line, you can run the following: ```bash +$ sudo ctr image pull docker.io/library/busybox:latest $ sudo ctr run --runtime io.containerd.run.kata.v2 -t --rm docker.io/library/busybox:latest hello sh ```