Skip to content

Commit 6e4790e

Browse files
committed
chore: rewrite links from index.md to _index.md
Signed-off-by: David Karlsson <[email protected]>
1 parent 19f0010 commit 6e4790e

File tree

101 files changed

+175
-175
lines changed

Some content is hidden

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

101 files changed

+175
-175
lines changed

content/get-started/docker-overview.md

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

108108
### Docker Desktop
109109

110-
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).
110+
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).
111111

112112
### Docker registries
113113

content/guides/language/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The language-specific guides walk you through the process of:
2020
In addition to the language-specific modules, Docker documentation also provides guidelines to build images and efficiently manage your development environment. For more information, refer to the following topics:
2121

2222
* [Building best practices](/manuals/build/building/best-practices.md)
23-
* [Build images with BuildKit](/manuals/build/buildkit/index.md#getting-started)
23+
* [Build images with BuildKit](/manuals/build/buildkit/_index.md#getting-started)
2424

2525
## Language-specific guides
2626

content/guides/language/golang/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ so *go* (pun intended) check it out!
3535
You also must know some basic [Docker concepts](/get-started/docker-concepts/the-basics/what-is-a-container.md) as well as to
3636
be at least vaguely familiar with the [Dockerfile format](/manuals/build/concepts/dockerfile.md).
3737

38-
Your Docker set-up must have BuildKit enabled. BuildKit is enabled by default for all users on [Docker Desktop](/manuals/desktop/index.md).
38+
Your Docker set-up must have BuildKit enabled. BuildKit is enabled by default for all users on [Docker Desktop](/manuals/desktop/_index.md).
3939
If you have installed Docker Desktop, you don’t have to manually enable BuildKit. If you are running Docker on Linux,
40-
please check out BuildKit [getting started](/manuals/build/buildkit/index.md#getting-started) page.
40+
please check out BuildKit [getting started](/manuals/build/buildkit/_index.md#getting-started) page.
4141

4242
Some familiarity with the command line is also expected.
4343

content/guides/language/golang/build-images.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ application.
2020

2121
To complete this tutorial, you need the following:
2222

23-
- Docker running locally. Follow the [instructions to download and install Docker](/manuals/desktop/index.md).
23+
- Docker running locally. Follow the [instructions to download and install Docker](/manuals/desktop/_index.md).
2424
- An IDE or a text editor to edit files. [Visual Studio Code](https://code.visualstudio.com/) is a free and popular choice but you can use anything you feel comfortable with.
2525
- A Git client. This guide uses a command-line based `git` client, but you are free to use whatever works for you.
2626
- A command-line terminal application. The examples shown in this module are from the Linux shell, but they should work in PowerShell, Windows Command Prompt, or OS X Terminal with minimal, if any, modifications.
@@ -310,7 +310,7 @@ successfully built your image named `docker-gs-ping`.
310310

311311
To see the list of images you have on your local machine, you have two options.
312312
One is to use the CLI and the other is to use [Docker
313-
Desktop](/manuals/desktop/index.md). Since you're currently working in the
313+
Desktop](/manuals/desktop/_index.md). Since you're currently working in the
314314
terminal, take a look at listing images with the CLI.
315315

316316
To list images, run the `docker image ls`command (or the `docker images` shorthand):

content/guides/language/golang/develop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ networks:
571571
```
572572
573573
574-
This Docker Compose configuration is super convenient as you don't have to type all the parameters to pass to the `docker run` command. You can declaratively do that in the Docker Compose file. The [Docker Compose documentation pages](/manuals/compose/index.md) are quite extensive and include a full reference for the Docker Compose file format.
574+
This Docker Compose configuration is super convenient as you don't have to type all the parameters to pass to the `docker run` command. You can declaratively do that in the Docker Compose file. The [Docker Compose documentation pages](/manuals/compose/_index.md) are quite extensive and include a full reference for the Docker Compose file format.
575575

576576
### The `.env` file
577577

content/guides/language/nodejs/develop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ have these variables defined yet.
273273

274274
## Configure and run a development container
275275

276-
You can use a bind mount to mount your source code into the container. The container can then see the changes you make to the code immediately, as soon as you save a file. This means that you can run processes, like nodemon, in the container that watch for filesystem changes and respond to them. To learn more about bind mounts, see [Storage overview](/manuals/engine/storage/index.md).
276+
You can use a bind mount to mount your source code into the container. The container can then see the changes you make to the code immediately, as soon as you save a file. This means that you can run processes, like nodemon, in the container that watch for filesystem changes and respond to them. To learn more about bind mounts, see [Storage overview](/manuals/engine/storage/_index.md).
277277

278278
In addition to adding a bind mount, you can configure your Dockerfile and `compose.yaml` file to install development dependencies and run development tools.
279279

content/guides/language/rust/develop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ In this section, you took a look at setting up your Compose file to run your Rus
319319

320320
Related information:
321321
- [Docker volumes](/manuals/engine/storage/volumes.md)
322-
- [Compose overview](/manuals/compose/index.md)
322+
- [Compose overview](/manuals/compose/_index.md)
323323

324324
## Next steps
325325

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ When running Ollama in a container, you should have a CUDA-supported GPU. While
101101
To run Ollama in a container and provide GPU access:
102102
1. Install the prerequisites.
103103
- For Docker Engine on Linux, install the [NVIDIA Container Toolkilt](https://github.com/NVIDIA/nvidia-container-toolkit).
104-
- For Docker Desktop on Windows 10/11, install the latest [NVIDIA driver](https://www.nvidia.com/Download/index.aspx) and make sure you are using the [WSL2 backend](/manuals/desktop/wsl/index.md#turn-on-docker-desktop-wsl-2)
104+
- For Docker Desktop on Windows 10/11, install the latest [NVIDIA driver](https://www.nvidia.com/Download/index.aspx) and make sure you are using the [WSL2 backend](/manuals/desktop/wsl/_index.md#turn-on-docker-desktop-wsl-2)
105105
2. Add the Ollama service and a volume in your `compose.yaml`. The following is
106106
the updated `compose.yaml`:
107107

content/manuals/admin/company/organizations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ There is no limit to the number of organizations you can have under a company la
7777
2. In the left navigation, select your company in the drop-down menu.
7878
3. Select the organization that you want to manage.
7979

80-
For more details about managing an organization, see [Organization administration](../organization/index.md).
80+
For more details about managing an organization, see [Organization administration](../organization/_index.md).
8181
{{< /tab >}}
8282

8383
{{< /tabs >}}

content/manuals/admin/faqs/company-faqs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ You can add organizations to a company in the [Admin Console](../../admin/compan
5757

5858
### How does a company owner manage SSO/SCIM settings from a company?
5959

60-
See your [SCIM](scim.md) and [SSO](../../security/for-admins/single-sign-on/configure/index.md) settings.
60+
See your [SCIM](scim.md) and [SSO](../../security/for-admins/single-sign-on/configure/_index.md) settings.
6161

6262
### How does a company owner enable group mapping in an IdP?
6363

0 commit comments

Comments
 (0)