Skip to content

Commit 135870f

Browse files
committed
hugo: move manuals content to /manuals section
Signed-off-by: David Karlsson <[email protected]>
1 parent b65c890 commit 135870f

File tree

838 files changed

+1067
-854
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

838 files changed

+1067
-854
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ USER root
5050
RUN --mount=type=bind,target=. \
5151
/usr/local/bin/markdownlint-cli2 \
5252
"content/**/*.md" \
53-
"#content/engine/release-notes/*.md" \
54-
"#content/desktop/previous-versions/*.md"
53+
"#content/manuals/engine/release-notes/*.md" \
54+
"#content/manuals/desktop/previous-versions/*.md"
5555

5656
# test validates HTML output and checks for broken links
5757
FROM wjdp/htmltest:v${HTMLTEST_VERSION} AS test

content/get-started/docker-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Docker API. The Docker client can communicate with more than one daemon.
106106

107107
### Docker Desktop
108108

109-
Docker Desktop is an easy-to-install application for your Mac, Windows or Linux environment that enables you to build and share containerized applications and microservices. Docker Desktop includes the Docker daemon (`dockerd`), the Docker client (`docker`), Docker Compose, Docker Content Trust, Kubernetes, and Credential Helper. For more information, see [Docker Desktop](/desktop/index.md).
109+
Docker Desktop is an easy-to-install application for your Mac, Windows or Linux environment that enables you to build and share containerized applications and microservices. Docker Desktop includes the Docker daemon (`dockerd`), the Docker client (`docker`), Docker Compose, Docker Content Trust, Kubernetes, and Credential Helper. For more information, see [Docker Desktop](/manuals/desktop/index.md).
110110

111111
### Docker registries
112112

content/get-started/workshop/04_sharing_app.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ new instance that has never seen this container image. To do this, you will use
8080
> $ docker build --platform linux/amd64 -t YOUR-USER-NAME/getting-started .
8181
> ```
8282
>
83-
> Docker buildx also supports building multi-platform images. To learn more, see [Multi-platform images](/build/building/multi-platform.md).
83+
> Docker buildx also supports building multi-platform images. To learn more, see [Multi-platform images](/manuals/build/building/multi-platform.md).
8484
8585
8686
1. Open your browser to [Play with Docker](https://labs.play-with-docker.com/).
@@ -112,7 +112,7 @@ new instance that has never seen this container image. To do this, you will use
112112
> on all interfaces of the host, making it available to the outside world.
113113
>
114114
> For more information about how port mapping works, see
115-
> [Networking](/engine/network/_index.md#published-ports).
115+
> [Networking](/manuals/engine/network/_index.md#published-ports).
116116

117117
6. Select the 3000 badge when it appears.
118118

@@ -129,8 +129,8 @@ can use the latest version of the image.
129129
Related information:
130130

131131
- [docker CLI reference](/reference/cli/docker/)
132-
- [Multi-platform images](/build/building/multi-platform.md)
133-
- [Docker Hub overview](/docker-hub/_index.md)
132+
- [Multi-platform images](/manuals/build/building/multi-platform.md)
133+
- [Docker Hub overview](/manuals/docker-hub/_index.md)
134134

135135
## Next steps
136136

content/get-started/workshop/05_persisting_data.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ With the previous experiment, you saw that each container starts from the image
6363
While containers can create, update, and delete files, those changes are lost when you remove the container
6464
and Docker isolates all changes to that container. With volumes, you can change all of this.
6565

66-
[Volumes](/engine/storage/volumes.md) provide the ability to connect specific filesystem paths of
66+
[Volumes](/manuals/engine/storage/volumes.md) provide the ability to connect specific filesystem paths of
6767
the container back to the host machine. If you mount a directory in the container, changes in that
6868
directory are also seen on the host machine. If you mount that same directory across container restarts, you'd see
6969
the same files.
@@ -118,7 +118,7 @@ You can create the volume and start the container using the CLI or Docker Deskto
118118
> ```
119119
>
120120
> For more details about Git Bash's syntax differences, see
121-
> [Working with Git Bash](../../desktop/troubleshoot/topics/#working-with-git-bash).
121+
> [Working with Git Bash](/desktop/troubleshoot/topics/#working-with-git-bash).
122122
123123
124124
{{< /tab >}}
@@ -205,7 +205,7 @@ In this section, you learned how to persist container data.
205205
Related information:
206206

207207
- [docker CLI reference](/reference/cli/docker/)
208-
- [Volumes](/engine/storage/volumes.md)
208+
- [Volumes](/manuals/engine/storage/volumes.md)
209209

210210
## Next steps
211211

content/get-started/workshop/06_bind_mounts.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ work.
4949
1. Verify that your `getting-started-app` directory is in a directory defined in
5050
Docker Desktop's file sharing setting. This setting defines which parts of your
5151
filesystem you can share with containers. For details about accessing the
52-
setting, see the topic for [Mac](/desktop/settings/mac.md#file-sharing),
53-
[Windows](/desktop/settings/windows.md#file-sharing), or
54-
[Linux](/desktop/settings/linux.md#file-sharing).
52+
setting, see the topic for [Mac](/manuals/desktop/settings/mac.md#file-sharing),
53+
[Windows](/manuals/desktop/settings/windows.md#file-sharing), or
54+
[Linux](/manuals/desktop/settings/linux.md#file-sharing).
5555

5656
2. Open a terminal and change directory to the `getting-started-app`
5757
directory.

content/get-started/workshop/07_multi_container.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ container. You learned a little bit about container networking and service disco
313313

314314
Related information:
315315
- [docker CLI reference](/reference/cli/docker/)
316-
- [Networking overview](/engine/network/_index.md)
316+
- [Networking overview](/manuals/engine/network/_index.md)
317317

318318
## Next steps
319319

content/get-started/workshop/08_using_compose.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ aliases:
88
- /guides/workshop/08_using_compose/
99
---
1010

11-
[Docker Compose](/compose/_index.md) is a tool that helps you define and
11+
[Docker Compose](/manuals/compose/_index.md) is a tool that helps you define and
1212
share multi-container applications. With Compose, you can create a YAML file to define the services
1313
and with a single command, you can spin everything up or tear it all down.
1414

@@ -279,7 +279,7 @@ In this section, you learned about Docker Compose and how it helps you simplify
279279
the way you define and share multi-service applications.
280280

281281
Related information:
282-
- [Compose overview](/compose/_index.md)
282+
- [Compose overview](/manuals/compose/_index.md)
283283
- [Compose file reference](/reference/compose-file/_index.md)
284284
- [Compose CLI reference](/reference/cli/docker/compose/_index.md)
285285

content/get-started/workshop/09_image_best.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ In this section, you learned a few image building best practices, including laye
201201

202202
Related information:
203203
- [Dockerfile reference](/reference/dockerfile/)
204-
- [Dockerfile best practices](/build/building/best-practices.md)
204+
- [Dockerfile best practices](/manuals/build/building/best-practices.md)
205205

206206
## Next steps
207207

content/guides/deployment-orchestration/swarm-deploy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ In addition to deploying to Swarm, you've also described your application as a s
103103

104104
Further documentation for all new Swarm objects and CLI commands used in this article are available here:
105105

106-
- [Swarm Mode](/engine/swarm/_index.md)
107-
- [Swarm Mode Services](/engine/swarm/how-swarm-mode-works/services.md)
108-
- [Swarm Stacks](/engine/swarm/stack-deploy.md)
106+
- [Swarm Mode](/manuals/engine/swarm/_index.md)
107+
- [Swarm Mode Services](/manuals/engine/swarm/how-swarm-mode-works/services.md)
108+
- [Swarm Stacks](/manuals/engine/swarm/stack-deploy.md)
109109
- [`docker stack *`](/reference/cli/docker/stack/)
110110
- [`docker service *`](/reference/cli/docker/service/)

content/guides/use-case/genai-pdf-bot/containerize.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ description: Learn how to containerize a generative AI (GenAI) application.
88

99
> [!NOTE]
1010
>
11-
> GenAI applications can often benefit from GPU acceleration. Currently Docker Desktop supports GPU acceleration only on [Windows with the WSL2 backend](../../../desktop/gpu.md#using-nvidia-gpus-with-wsl2). Linux users can also access GPU acceleration using a native installation of the [Docker Engine](../../../engine/install/_index.md).
11+
> GenAI applications can often benefit from GPU acceleration. Currently Docker Desktop supports GPU acceleration only on [Windows with the WSL2 backend](/manuals/desktop/gpu.md#using-nvidia-gpus-with-wsl2). Linux users can also access GPU acceleration using a native installation of the [Docker Engine](/manuals/engine/install/_index.md).
1212
13-
* You have installed the latest version of [Docker Desktop](/get-started/get-docker.md) or, if you are a Linux user and are planning to use GPU acceleration, [Docker Engine](../../../engine/install/_index.md). Docker adds new features regularly and some parts of this guide may work only with the latest version of Docker Desktop.
13+
* You have installed the latest version of [Docker Desktop](/get-started/get-docker.md) or, if you are a Linux user and are planning to use GPU acceleration, [Docker Engine](/manuals/engine/install/_index.md). Docker adds new features regularly and some parts of this guide may work only with the latest version of Docker Desktop.
1414
* You have a [git client](https://git-scm.com/downloads). The examples in this section use a command-line based git client, but you can use any client.
1515

1616
## Overview

0 commit comments

Comments
 (0)