Skip to content

Commit c5b3cb6

Browse files
committed
chore: fix links pointing to redirect targets
Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
1 parent 5b2a9c8 commit c5b3cb6

16 files changed

Lines changed: 23 additions & 23 deletions

File tree

content/get-started/docker-concepts/building-images/build-tag-and-publish-an-image.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,9 +221,9 @@ Now that you have an image built, it's time to push the image to a registry.
221221
To learn more about building, tagging, and publishing images, visit the following resources:
222222

223223
* [What is a build context?](/build/concepts/context/#what-is-a-build-context)
224-
* [docker build reference](/engine/reference/commandline/image_build/)
225-
* [docker image tag reference](/engine/reference/commandline/image_tag/)
226-
* [docker push reference](/engine/reference/commandline/image_push/)
224+
* [docker build reference](/reference/cli/docker/buildx/build/)
225+
* [docker image tag reference](/reference/cli/docker/image/tag/)
226+
* [docker push reference](/reference/cli/docker/image/push/)
227227
* [What is a registry?](/get-started/docker-concepts/the-basics/what-is-a-registry/)
228228

229229
## Next steps

content/get-started/docker-concepts/building-images/writing-a-dockerfile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Now that you have the project, you’re ready to create the `Dockerfile`.
152152
> The `docker init` command will analyze your project and quickly create
153153
> a Dockerfile, a `compose.yaml`, and a `.dockerignore`, helping you get
154154
> up and going. Since you're learning about Dockerfiles specifically here,
155-
> you won't use it now. But, [learn more about it here](/engine/reference/commandline/init/).
155+
> you won't use it now. But, [learn more about it here](/reference/cli/docker/init/).
156156

157157
## Additional resources
158158

content/get-started/docker-concepts/the-basics/what-is-docker-compose.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,5 +138,5 @@ This page was a brief introduction to Compose. In the following resources, you c
138138

139139

140140
* [Overview of Docker Compose](/compose/)
141-
* [Overview of Docker Compose CLI](/compose/reference/)
141+
* [Overview of Docker Compose CLI](/reference/cli/docker/compose/)
142142
* [How Compose works](/compose/intro/compose-application-model/)

content/guides/angular/containerize.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -567,8 +567,8 @@ Explore official references and best practices to sharpen your Docker workflow:
567567
- [Best practices for writing Dockerfiles](/develop/develop-images/dockerfile_best-practices/) – Write efficient, maintainable, and secure Dockerfiles.
568568
- [Build context in Docker](/build/concepts/context/) – Learn how context affects image builds.
569569
- [`docker init` CLI reference](/reference/cli/docker/init/) – Scaffold Docker assets automatically.
570-
- [`docker build` CLI reference](/reference/cli/docker/build/) – Build Docker images from a Dockerfile.
571-
- [`docker images` CLI reference](/reference/cli/docker/images/) – Manage and inspect local Docker images.
570+
- [`docker build` CLI reference](/reference/cli/docker/image/build/) – Build Docker images from a Dockerfile.
571+
- [`docker images` CLI reference](/reference/cli/docker/image/ls/) – Manage and inspect local Docker images.
572572
- [`docker compose up` CLI reference](/reference/cli/docker/compose/up/) – Start and run multi-container applications.
573573
- [`docker compose down` CLI reference](/reference/cli/docker/compose/down/) – Stop and remove containers, networks, and volumes.
574574

content/guides/angular/run-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ $ docker compose run --rm angular-test
9494
This command will:
9595
- Start the `angular-test` service defined in your `compose.yaml` file.
9696
- Execute the `npm run test` script using the same environment as development.
97-
- Automatically removes the container after tests complete, using the [`docker compose run --rm`](/engine/reference/commandline/compose_run) command.
97+
- Automatically removes the container after tests complete, using the [`docker compose run --rm`](/reference/cli/docker/compose/run/) command.
9898

9999
You should see output similar to the following:
100100

content/guides/docker-compose/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ params:
1313
time: 10 minutes
1414
resource_links:
1515
- title: Overview of Docker Compose CLI
16-
url: /compose/reference/
16+
url: /reference/cli/docker/compose/
1717
- title: Overview of Docker Compose
1818
url: /compose/
1919
- title: How Compose works

content/guides/nodejs/containerize.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -861,8 +861,8 @@ Explore official references and best practices to sharpen your Docker workflow:
861861
- [Best practices for writing Dockerfiles](/develop/develop-images/dockerfile_best-practices/) – Write efficient, maintainable, and secure Dockerfiles.
862862
- [Build context in Docker](/build/concepts/context/) – Learn how context affects image builds.
863863
- [`docker init` CLI reference](/reference/cli/docker/init/) – Scaffold Docker assets automatically.
864-
- [`docker build` CLI reference](/reference/cli/docker/build/) – Build Docker images from a Dockerfile.
865-
- [`docker images` CLI reference](/reference/cli/docker/images/) – Manage and inspect local Docker images.
864+
- [`docker build` CLI reference](/reference/cli/docker/image/build/) – Build Docker images from a Dockerfile.
865+
- [`docker images` CLI reference](/reference/cli/docker/image/ls/) – Manage and inspect local Docker images.
866866
- [`docker compose up` CLI reference](/reference/cli/docker/compose/up/) – Start and run multi-container applications.
867867
- [`docker compose down` CLI reference](/reference/cli/docker/compose/down/) – Stop and remove containers, networks, and volumes.
868868

content/guides/reactjs/containerize.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -547,8 +547,8 @@ Explore official references and best practices to sharpen your Docker workflow:
547547
- [Best practices for writing Dockerfiles](/develop/develop-images/dockerfile_best-practices/) – Write efficient, maintainable, and secure Dockerfiles.
548548
- [Build context in Docker](/build/concepts/context/) – Learn how context affects image builds.
549549
- [`docker init` CLI reference](/reference/cli/docker/init/) – Scaffold Docker assets automatically.
550-
- [`docker build` CLI reference](/reference/cli/docker/build/) – Build Docker images from a Dockerfile.
551-
- [`docker images` CLI reference](/reference/cli/docker/images/) – Manage and inspect local Docker images.
550+
- [`docker build` CLI reference](/reference/cli/docker/image/build/) – Build Docker images from a Dockerfile.
551+
- [`docker images` CLI reference](/reference/cli/docker/image/ls/) – Manage and inspect local Docker images.
552552
- [`docker compose up` CLI reference](/reference/cli/docker/compose/up/) – Start and run multi-container applications.
553553
- [`docker compose down` CLI reference](/reference/cli/docker/compose/down/) – Stop and remove containers, networks, and volumes.
554554

content/guides/reactjs/run-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ $ docker compose run --rm react-test
144144
This command will:
145145
- Start the `react-test` service defined in your `compose.yaml` file.
146146
- Execute the `npm run test` script using the same environment as development.
147-
- Automatically remove the container after the tests complete [`docker compose run --rm`](/engine/reference/commandline/compose_run) command.
147+
- Automatically remove the container after the tests complete [`docker compose run --rm`](/reference/cli/docker/compose/run/) command.
148148

149149
> [!NOTE]
150150
> For more information about Compose commands, see the [Compose CLI

content/guides/vuejs/containerize.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -569,8 +569,8 @@ Explore official references and best practices to sharpen your Docker workflow:
569569
- [Best practices for writing Dockerfiles](/develop/develop-images/dockerfile_best-practices/) – Write efficient, maintainable, and secure Dockerfiles.
570570
- [Build context in Docker](/build/concepts/context/) – Learn how context affects image builds.
571571
- [`docker init` CLI reference](/reference/cli/docker/init/) – Scaffold Docker assets automatically.
572-
- [`docker build` CLI reference](/reference/cli/docker/build/) – Build Docker images from a Dockerfile.
573-
- [`docker images` CLI reference](/reference/cli/docker/images/) – Manage and inspect local Docker images.
572+
- [`docker build` CLI reference](/reference/cli/docker/image/build/) – Build Docker images from a Dockerfile.
573+
- [`docker images` CLI reference](/reference/cli/docker/image/ls/) – Manage and inspect local Docker images.
574574
- [`docker compose up` CLI reference](/reference/cli/docker/compose/up/) – Start and run multi-container applications.
575575
- [`docker compose down` CLI reference](/reference/cli/docker/compose/down/) – Stop and remove containers, networks, and volumes.
576576

0 commit comments

Comments
 (0)