Skip to content

Commit 2c0dd7e

Browse files
committed
chore: update references to docker vscode extension
Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
1 parent 8a54b7c commit 2c0dd7e

5 files changed

Lines changed: 42 additions & 40 deletions

File tree

content/manuals/build/bake/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ target "myapp" {
8787
> [!TIP]
8888
>
8989
> Want a better editing experience for Bake files in VS Code?
90-
> Check out the [Docker VS Code Extension (Beta)](https://marketplace.visualstudio.com/items?itemName=docker.docker) for linting, code navigation, and vulnerability scanning.
90+
> Check out the [Docker DX](https://marketplace.visualstudio.com/items?itemName=docker.docker) extension for linting, code navigation, and vulnerability scanning.
9191
9292
## Next steps
9393

content/manuals/build/building/best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ to create an efficient and maintainable Dockerfile.
281281
> [!TIP]
282282
>
283283
> To improve linting, code navigation, and vulnerability scanning of your Dockerfiles in Visual Studio Code
284-
> see [Docker VS Code Extension](https://marketplace.visualstudio.com/items?itemName=docker.docker).
284+
> see the [Docker DX](https://marketplace.visualstudio.com/items?itemName=docker.docker) extension.
285285
286286
### FROM
287287

content/manuals/build/checks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Build checks are useful for:
3434
> [!TIP]
3535
>
3636
> To improve linting, code navigation, and vulnerability scanning of your Dockerfiles in Visual Studio Code
37-
> see [Docker VS Code Extension](https://marketplace.visualstudio.com/items?itemName=docker.docker).
37+
> see the [Docker DX](https://marketplace.visualstudio.com/items?itemName=docker.docker) extension.
3838
3939
## Build with checks
4040

content/manuals/build/concepts/dockerfile.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ weight: 20
44
description: Learn about Dockerfiles and how to use them with Docker Images to build and package your software
55
keywords: build, buildx, buildkit, getting started, dockerfile
66
aliases:
7-
- /build/hellobuild/
8-
- /build/building/packaging/
7+
- /build/hellobuild/
8+
- /build/building/packaging/
99
---
1010

1111
<!-- vale Docker.We = NO -->
@@ -22,7 +22,7 @@ reference in the [Dockerfile reference](/reference/dockerfile.md).
2222
Here are the most common types of instructions:
2323

2424
| Instruction | Description |
25-
|-----------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
25+
| --------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
2626
| [`FROM <image>`](/reference/dockerfile.md#from) | Defines a base for your image. |
2727
| [`RUN <command>`](/reference/dockerfile.md#run) | Executes any commands in a new layer on top of the current image and commits the result. `RUN` also has a shell form for running commands. |
2828
| [`WORKDIR <directory>`](/reference/dockerfile.md#workdir) | Sets the working directory for any `RUN`, `CMD`, `ENTRYPOINT`, `COPY`, and `ADD` instructions that follow it in the Dockerfile. |
@@ -284,4 +284,4 @@ Docker host.
284284
> [!TIP]
285285
>
286286
> To improve linting, code navigation, and vulnerability scanning of your Dockerfiles in Visual Studio Code
287-
> see [Docker VS Code Extension](https://marketplace.visualstudio.com/items?itemName=docker.docker).
287+
> see the [Docker DX](https://marketplace.visualstudio.com/items?itemName=docker.docker) extension.
Lines changed: 35 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,47 @@
11
---
2-
description: Find the latest recommended version of the Docker Compose file format
2+
description:
3+
Find the latest recommended version of the Docker Compose file format
34
for defining multi-container applications.
4-
keywords: docker compose file, docker compose yml, docker compose reference, docker
5+
keywords:
6+
docker compose file, docker compose yml, docker compose reference, docker
57
compose cmd, docker compose user, docker compose image, yaml spec, docker compose
68
syntax, yaml specification, docker compose specification
79
title: Compose file reference
810
toc_max: 4
911
toc_min: 1
1012
grid:
11-
- title: Version and name top-level element
12-
description: Understand version and name attributes for Compose.
13-
icon: text_snippet
14-
link: /reference/compose-file/version-and-name/
15-
- title: Services top-level element
16-
description: Explore all services attributes for Compose.
17-
icon: construction
18-
link: /reference/compose-file/services/
19-
- title: Networks top-level element
20-
description: Find all networks attributes for Compose.
21-
icon: lan
22-
link: /reference/compose-file/networks/
23-
- title: Volumes top-level element
24-
description: Explore all volumes attributes for Compose.
25-
icon: database
26-
link: /reference/compose-file/volumes/
27-
- title: Configs top-level element
28-
description: Find out about configs in Compose.
29-
icon: settings
30-
link: /reference/compose-file/configs/
31-
- title: Secrets top-level element
32-
description: Learn about secrets in Compose.
33-
icon: lock
34-
link: /reference/compose-file/secrets/
13+
- title: Version and name top-level element
14+
description: Understand version and name attributes for Compose.
15+
icon: text_snippet
16+
link: /reference/compose-file/version-and-name/
17+
- title: Services top-level element
18+
description: Explore all services attributes for Compose.
19+
icon: construction
20+
link: /reference/compose-file/services/
21+
- title: Networks top-level element
22+
description: Find all networks attributes for Compose.
23+
icon: lan
24+
link: /reference/compose-file/networks/
25+
- title: Volumes top-level element
26+
description: Explore all volumes attributes for Compose.
27+
icon: database
28+
link: /reference/compose-file/volumes/
29+
- title: Configs top-level element
30+
description: Find out about configs in Compose.
31+
icon: settings
32+
link: /reference/compose-file/configs/
33+
- title: Secrets top-level element
34+
description: Learn about secrets in Compose.
35+
icon: lock
36+
link: /reference/compose-file/secrets/
3537
aliases:
36-
- /compose/yaml/
37-
- /compose/compose-file/compose-file-v1/
38-
- /compose/compose-file/
39-
- /compose/reference/overview/
38+
- /compose/yaml/
39+
- /compose/compose-file/compose-file-v1/
40+
- /compose/compose-file/
41+
- /compose/reference/overview/
4042
---
4143

42-
>**New to Docker Compose?**
44+
> **New to Docker Compose?**
4345
>
4446
> Find more information about the [key features and use cases of Docker Compose](/manuals/compose/intro/features-uses.md) or [try the quickstart guide](/manuals/compose/gettingstarted.md).
4547
@@ -49,11 +51,11 @@ Legacy versions 2.x and 3.x of the Compose file format were merged into the Comp
4951

5052
The Compose Specification on Docker Docs is the Docker Compose implementation. If you wish to implement your own version of the Compose Specification, see the [Compose Specification repository](https://github.com/compose-spec/compose-spec).
5153

52-
Use the following links to navigate key sections of the Compose Specification.
54+
Use the following links to navigate key sections of the Compose Specification.
5355

5456
> [!TIP]
5557
>
5658
> Want a better editing experience for Compose files in VS Code?
57-
> Check out the [Docker VS Code Extension (Beta)](https://marketplace.visualstudio.com/items?itemName=docker.docker) for linting, code navigation, and vulnerability scanning.
59+
> Check out the [Docker DX](https://marketplace.visualstudio.com/items?itemName=docker.docker) extension for linting, code navigation, and vulnerability scanning.
5860
5961
{{< grid >}}

0 commit comments

Comments
 (0)