From 2733b502a9c11b23be3d13e20f1319ed24cb8e23 Mon Sep 17 00:00:00 2001 From: David Karlsson Date: Thu, 3 Nov 2022 18:20:47 +0100 Subject: [PATCH] build: add stubs and toc for exporters Signed-off-by: David Karlsson --- _config.yml | 3 +++ _data/toc.yaml | 10 ++++++++++ build/building/exporters/image-registry.md | 8 ++++++++ build/building/exporters/index.md | 9 +++++++++ build/building/exporters/local-tar.md | 8 ++++++++ build/building/exporters/oci-docker.md | 8 ++++++++ 6 files changed, 46 insertions(+) create mode 100644 build/building/exporters/image-registry.md create mode 100644 build/building/exporters/index.md create mode 100644 build/building/exporters/local-tar.md create mode 100644 build/building/exporters/oci-docker.md diff --git a/_config.yml b/_config.yml index f1cdfbe86d..4b03f7796a 100644 --- a/_config.yml +++ b/_config.yml @@ -198,6 +198,9 @@ fetch-remote: - dest: "build/building/cache/backends" src: - "docs/guides/cache/**" + - dest: "build/building/exporters" + src: + - "docs/guides/exporters/**" - repo: "https://github.com/distribution/distribution" default_branch: "main" diff --git a/_data/toc.yaml b/_data/toc.yaml index a36042fbbf..8f2511c3c1 100644 --- a/_data/toc.yaml +++ b/_data/toc.yaml @@ -1539,6 +1539,16 @@ manuals: title: Azure Blob Storage - path: /build/building/cache/backends/s3/ title: Amazon S3 + - sectiontitle: Exporters + section: + - path: /build/building/exporters + title: Overview + - path: /build/building/image-registry/ + title: Image and registry exporters + - path: /build/building/local-tar/ + title: Local and tar exporters + - path: /build/building/oci-docker/ + title: OCI and Docker exporters - path: /build/building/multi-stage/ title: Multi-stage builds - path: /build/building/multi-platform/ diff --git a/build/building/exporters/image-registry.md b/build/building/exporters/image-registry.md new file mode 100644 index 0000000000..1b4e5f2a1c --- /dev/null +++ b/build/building/exporters/image-registry.md @@ -0,0 +1,8 @@ +--- +title: "Image and registry exporters" +keywords: > + build, buildx, buildkit, exporter, image, registry +fetch_remote: + line_start: 2 + line_end: -1 +--- diff --git a/build/building/exporters/index.md b/build/building/exporters/index.md new file mode 100644 index 0000000000..c205eae9c5 --- /dev/null +++ b/build/building/exporters/index.md @@ -0,0 +1,9 @@ +--- +title: "Exporters overview" +keywords: > + build, buildx, buildkit, exporter, image, registry, local, tar, oci, docker, + cacheonly +fetch_remote: + line_start: 2 + line_end: -1 +--- diff --git a/build/building/exporters/local-tar.md b/build/building/exporters/local-tar.md new file mode 100644 index 0000000000..e7ea9cbb2e --- /dev/null +++ b/build/building/exporters/local-tar.md @@ -0,0 +1,8 @@ +--- +title: "Local and tar exporters" +keywords: > + build, buildx, buildkit, exporter, local, tar +fetch_remote: + line_start: 2 + line_end: -1 +--- diff --git a/build/building/exporters/oci-docker.md b/build/building/exporters/oci-docker.md new file mode 100644 index 0000000000..6caff2448c --- /dev/null +++ b/build/building/exporters/oci-docker.md @@ -0,0 +1,8 @@ +--- +title: "OCI and Docker exporters" +keywords: > + build, buildx, buildkit, exporter, oci, docker +fetch_remote: + line_start: 2 + line_end: -1 +---