From 04c061fb8c0acac2ce90973676077b45ada3c8f9 Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Fri, 20 Jul 2018 13:09:35 +0100 Subject: [PATCH] docs: Remove note on private images It no longer applies. Signed-off-by: Rolf Neugebauer --- docs/privateimages.md | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 docs/privateimages.md diff --git a/docs/privateimages.md b/docs/privateimages.md deleted file mode 100644 index 0f684b594..000000000 --- a/docs/privateimages.md +++ /dev/null @@ -1,13 +0,0 @@ -## Private Images -When building, `linuxkit build` downloads, and optionally checks the notary signature, on any OCI images referenced in any section. - -As of this writing, it does **not** have the ability to download these images from registries that require credentials to access. This is equally true for private images on public registries, like https://hub.docker.com, as for private registries. - -We are working on enabling private images with credentials. Until such time as that feature is added, you can follow these steps to build a moby image using OCI images -that require credentials to access: - -1. `docker login` as relevant to authenticate against the desired registry. -2. `docker pull` to download the images to your local machine where you will run `moby build`. -3. Run `moby build` (or `linuxkit build`). - -Additionally, ensure that you do **not** have trust enabled for those images. See the section on [trust](#trust) in this document. Alternately, you can run `linuxkit build` with `--disable-trust`.