Skip to content

Commit 06d109d

Browse files
author
Natalie Arellano
committed
Fix broken links
Signed-off-by: Natalie Arellano <[email protected]>
1 parent 4cb6858 commit 06d109d

File tree

19 files changed

+25
-25
lines changed

19 files changed

+25
-25
lines changed

content/docs/app-journey.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ deploying your new image to your favorite cloud!
9999

100100
Windows image builds are now supported!
101101

102-
<a href="/docs/for-app-developers/how-to/configure-build/build-for-windows" class="button bg-blue">Windows build guide</a>
102+
<a href="/docs/for-app-developers/how-to/configure-build-environment/build-for-windows" class="button bg-blue">Windows build guide</a>
103103

104104
[builder]: /docs/concepts/components/builder/
105105
[buildpack]: /docs/concepts/components/buildpack/

content/docs/concepts/operations/rebase.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ $ pack rebase my-app:my-tag
3030
> **TIP:** `pack rebase` has a `--publish` flag that can be used to publish the updated app image directly to a registry.
3131
> Using `--publish` is optimal when using a registry in comparison to the docker daemon.
3232
33-
[build]: /docs/for-app-developers/tutorials/build-basic-app/
33+
[build]: /docs/for-app-developers/tutorials/basic-app/

content/docs/for-app-developers/how-to/configure-build-environment/build-for-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ curl http://10.0.0.1:8080
129129
[container-mode]: https://docs.docker.com/desktop/faqs/windowsfaqs/#how-do-i-switch-between-windows-and-linux-containers
130130
[docker-env-vars]: https://docs.docker.com/engine/reference/commandline/cli/#environment-variables
131131
[docker-hosts]: #understanding-docker-hosts
132-
[build-linux]: /docs/for-app-developers/tutorials/build-basic-app
132+
[build-linux]: /docs/for-app-developers/tutorials/basic-app
133133
[build]: /docs/concepts/operations/build
134134
[builder]: /docs/concepts/components/builder
135135
[buildpack]: /docs/concepts/components/buildpack

content/docs/for-app-developers/how-to/configure-build-environment/export-to-oci-layout.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ to save images requires by `pack build` command in OCI layout format.
3939

4040
### 2. Build the app
4141

42-
Please first follow the steps to [build an app](/docs/for-app-developers/tutorials/build-basic-app), once you have successfully built an application you can export the sample application to disk in OCI layout format.
42+
Please first follow the steps to [build an app](/docs/for-app-developers/tutorials/basic-app), once you have successfully built an application you can export the sample application to disk in OCI layout format.
4343

4444
The OCI layout feature must be enabled using the convention `oci:<path/to/save/image>` in the `<image-name>` parameter when invoking `pack build`.
4545

content/docs/for-app-developers/how-to/configure-build-inputs/buildpacks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,5 +110,5 @@ A buildpack located in a CNB Registry
110110
<small><sup></sup> Directory buildpacks are not currently supported on Windows.</small><br />
111111
<small><sup></sup> Version may be omitted if there is only one buildpack in the builder matching the `id`.</small>
112112

113-
[project-toml]: /docs/for-app-developers/how-to/build-inputs/use-project-toml/
113+
[project-toml]: /docs/for-app-developers/how-to/configure-build-inputs/project-toml/
114114
[samples]: https://github.com/buildpacks/samples

content/docs/for-app-developers/how-to/configure-build-inputs/inline-buildpacks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ EOF
5454
### Further Reading
5555
For more about project descriptors, look at the [schema][descriptor-schema], as well as the [specification][spec].
5656

57-
[project-toml]: /docs/for-app-developers/how-to/build-inputs/use-project-toml/
57+
[project-toml]: /docs/for-app-developers/how-to/configure-build-inputs/project-toml/
5858
[descriptor-schema]: /docs/reference/project-descriptor/
5959
[spec]: https://github.com/buildpacks/spec/blob/main/extensions/project-descriptor.md

content/docs/for-app-developers/how-to/configure-build-inputs/project-toml.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ docker run sample-app
106106
### Further Reading
107107
For more about project descriptors, look at the [schema][descriptor-schema], as well as the [specification][spec].
108108

109-
[specify-buildpacks]: /docs/for-app-developers/how-to/build-inputs/specify-buildpacks-from-cli
110-
[descriptor-envs]: /docs/for-app-developers/how-to/build-inputs/configure-build-time-environment/#using-project-descriptor
109+
[specify-buildpacks]: /docs/for-app-developers/how-to/configure-build-inputs/buildpacks
110+
[descriptor-envs]: /docs/for-app-developers/how-to/configure-build-inputs/build-time-environment/#using-project-descriptor
111111
[descriptor-schema]: /docs/reference/project-descriptor/
112112
[samples]: https://github.com/buildpacks/samples
113113
[spec]: https://github.com/buildpacks/spec/blob/main/extensions/project-descriptor.md

content/docs/for-app-developers/tutorials/basic-app/build.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,21 +67,21 @@ The app should now be running and accessible via [localhost:8080](http://localho
6767
Linux ARM image builds are now supported!
6868

6969
<!--+- if false+-->
70-
<a href="/docs/for-app-developers/how-to/configure-build/build-for-arm" class="button bg-blue">Linux ARM build guide</a>
70+
<a href="/docs/for-app-developers/how-to/configure-build-environment/build-for-arm" class="button bg-blue">Linux ARM build guide</a>
7171
<!--+end+-->
7272

7373
<!--+ `
74-
Check out the [Linux ARM build guide](https://buildpacks.io//docs/for-app-developers/how-to/configure-build/build-for-arm).
74+
Check out the [Linux ARM build guide](https://buildpacks.io//docs/for-app-developers/how-to/configure-build-environment/build-for-arm).
7575
` +-->
7676
## What about Windows apps?
7777

7878
Windows image builds are now supported!
7979

8080
<!--+- if false+-->
81-
<a href="/docs/for-app-developers/how-to/configure-build/build-for-windows" class="button bg-blue">Windows build guide</a>
81+
<a href="/docs/for-app-developers/how-to/configure-build-environment/build-for-windows" class="button bg-blue">Windows build guide</a>
8282
<!--+end+-->
8383
<!--+ `
84-
Check out the [Windows build guide](https://buildpacks.io/docs/for-app-developers/how-to/configure-build/build-for-windows/).
84+
Check out the [Windows build guide](https://buildpacks.io/docs/for-app-developers/how-to/configure-build-environment/build-for-windows/).
8585
` +-->
8686

8787
[build]: /docs/concepts/operations/build

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
@@ -31,4 +31,4 @@ For older platforms (Platform API version 0.9 and below), arguments in `command`
3131

3232
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).
3333

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ Buildpacks can use this information to modify their behavior depending on the ta
5353

5454
In Platform 0.12, extensions can be used to extend not only build-time base images, but runtime base images as well.
5555

56-
For more information, see [authoring an image extension](/docs/for-buildpack-authors/tutorials/write-basic-extension).
56+
For more information, see [authoring an image extension](/docs/for-buildpack-authors/tutorials/basic-extension).

0 commit comments

Comments
 (0)