Skip to content

Commit 27baec6

Browse files
author
Natalie Arellano
committed
Fix broken links
Signed-off-by: Natalie Arellano <[email protected]>
1 parent 56f074b commit 27baec6

File tree

6 files changed

+20
-4
lines changed

6 files changed

+20
-4
lines changed

config.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,9 @@ featureKatacoda = false
111111
[[module.mounts]]
112112
source = 'content/docs/.concepts/extension.md'
113113
target = 'content/docs/for-platform-operators/concepts/extension.md'
114+
[[module.mounts]]
115+
source = 'content/docs/.concepts/composite-buildpack.md'
116+
target = 'content/docs/for-buildpack-authors/concepts/composite-buildpack.md'
117+
[[module.mounts]]
118+
source = 'content/docs/.concepts/composite-buildpack.md'
119+
target = 'content/docs/for-platform-operators/concepts/composite-buildpack.md'
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
+++
2+
title="What is a composite buildpack?"
3+
weight=99
4+
+++
5+
6+
A composite buildpack, also sometimes called a "meta-buildpack",
7+
is a buildpack that does not contain any `./bin/detect` or `./bin/build` binaries,
8+
but instead references other buildpacks in its `buildpack.toml` via the `[[order]]` array.
9+
10+
This is useful for composing more complex detection strategies.

content/docs/for-buildpack-authors/concepts/buildpack-group.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ The [Operator's Guide][operator-guide] has more information on creating builders
5757
[order-resolution]: https://github.com/buildpacks/spec/blob/main/buildpack.md#order-resolution
5858
[operator-guide]: /docs/for-platform-operators/
5959
[builder]: /docs/for-platform-operators/concepts/builder/
60-
[meta-buildpack]: /docs/for-platform-operators/concepts/buildpack/#meta-buildpack
60+
[meta-buildpack]: /docs/for-platform-operators/concepts/composite-buildpack

content/docs/for-buildpack-authors/how-to/migrate/buildpack-api-0.8-0.9.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ For older platforms (Platform API version 0.9 and below), arguments in `command`
3333

3434
### Image extensions are supported (experimental)
3535

36-
Platform 0.10 introduces image extensions as experimental components for customizing build and run-time base images (see [here](/docs/for-platform-operators/concepts/dockerfiles) for more information).
36+
Platform 0.10 introduces image extensions as experimental components for customizing build and run-time base images (see [here](/docs/for-platform-operators/concepts/extension) for more information).
3737

3838
For more information, see our tutorial on [authoring an image extension](/docs/for-buildpack-authors/tutorials/basic-extension).

content/docs/for-platform-operators/how-to/migrate/platform-api-0.9-0.10.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ For processes from older buildpacks, upgrading the platform will not change the
8585

8686
### Image extensions are supported (experimental)
8787

88-
Platform 0.10 introduces image extensions as experimental components for customizing build and run-time base images (see [here](/docs/for-platform-operators/concepts/dockerfiles) for more information). Image extensions output Dockerfiles which are applied by the lifecycle using [kaniko][https://github.com/GoogleContainerTools/kaniko], a tool for building container images in Kubernetes, as a library.
88+
Platform 0.10 introduces image extensions as experimental components for customizing build and run-time base images (see [here](/docs/for-platform-operators/concepts/extension) for more information). Image extensions output Dockerfiles which are applied by the lifecycle using [kaniko][https://github.com/GoogleContainerTools/kaniko], a tool for building container images in Kubernetes, as a library.
8989

9090
Note: image extensions are not supported for Windows container images.
9191

content/docs/reference/spec/buildpack-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,4 +396,4 @@ You can read the complete [Buildpack API specification on Github](https://github
396396

397397
[buildpack]: /docs/for-platform-operators/concepts/buildpack/
398398
[lifecycle]: /docs/for-platform-operators/concepts/lifecycle/
399-
[meta-buildpack]: /docs/for-platform-operators/concepts/buildpack/#meta-buildpack
399+
[meta-buildpack]: /docs/for-platform-operators/concepts/composite-buildpack

0 commit comments

Comments
 (0)