From e63bace45399dba601799c9f75a97750a9cdd544 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Tue, 6 Jun 2017 16:00:36 -0400 Subject: [PATCH] tutorial: pull the redis image first Signed-off-by: Vincent Batts --- tutorial.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tutorial.md b/tutorial.md index e981f892..980890c7 100644 --- a/tutorial.md +++ b/tutorial.md @@ -324,9 +324,10 @@ Annotations: ### Create a Redis container inside the Pod -Use the `crioctl` command to create a redis container from a container configuration and attach it to the Pod created earlier: +Use the `crioctl` command to pull the redis image, create a redis container from a container configuration and attach it to the Pod created earlier: ``` +sudo crioctl image pull redis:alpine CONTAINER_ID=$(sudo crioctl ctr create --pod $POD_ID --config test/testdata/container_redis.json) ```