From a002dafcddffecf5a670adaea53bcb7a4ee4eeb5 Mon Sep 17 00:00:00 2001 From: Sahin Yort Date: Thu, 12 Sep 2024 13:46:49 -0700 Subject: [PATCH] doc: mention containerd requirement (#694) --- docs/load.md | 8 ++++++++ oci/private/load.bzl | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/docs/load.md b/docs/load.md index b79e4e37..447978f9 100644 --- a/docs/load.md +++ b/docs/load.md @@ -57,6 +57,14 @@ filegroup( ) ``` +### When using `format = "oci"` + +When using format = oci, containerd image store needs to be enabled in order for the oci style tarballs to work. + +On docker desktop this can be enabled by visiting `Settings (cog icon) -> Features in development -> Use containerd for pulling and storing images` + +For more information, see https://docs.docker.com/desktop/containerd/ + ### Multiple images To load more than one image into the daemon, diff --git a/oci/private/load.bzl b/oci/private/load.bzl index 49a68f57..525d0278 100644 --- a/oci/private/load.bzl +++ b/oci/private/load.bzl @@ -50,6 +50,14 @@ filegroup( ) ``` +### When using `format = "oci"` + +When using format = oci, containerd image store needs to be enabled in order for the oci style tarballs to work. + +On docker desktop this can be enabled by visiting `Settings (cog icon) -> Features in development -> Use containerd for pulling and storing images` + +For more information, see https://docs.docker.com/desktop/containerd/ + ### Multiple images To load more than one image into the daemon,