Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions content/manuals/build/bake/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@
}
```

> [!TIP]
>
> Want a better editing experience for Bake files in VS Code?

Check warning on line 89 in content/manuals/build/bake/introduction.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.RecommendedWords] Consider using 'versus' instead of 'VS' Raw Output: {"message": "[Docker.RecommendedWords] Consider using 'versus' instead of 'VS'", "location": {"path": "content/manuals/build/bake/introduction.md", "range": {"start": {"line": 89, "column": 54}}}, "severity": "INFO"}

Check warning on line 89 in content/manuals/build/bake/introduction.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.Acronyms] 'VS' has no definition. Raw Output: {"message": "[Docker.Acronyms] 'VS' has no definition.", "location": {"path": "content/manuals/build/bake/introduction.md", "range": {"start": {"line": 89, "column": 54}}}, "severity": "WARNING"}
> Check out the [Docker VS Code Extension (experimental)](https://github.com/docker/vscode-extension) for linting, code navigation, and vulnerability scanning.

Check warning on line 90 in content/manuals/build/bake/introduction.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.RecommendedWords] Consider using 'versus' instead of 'VS' Raw Output: {"message": "[Docker.RecommendedWords] Consider using 'versus' instead of 'VS'", "location": {"path": "content/manuals/build/bake/introduction.md", "range": {"start": {"line": 90, "column": 25}}}, "severity": "INFO"}

Check warning on line 90 in content/manuals/build/bake/introduction.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.Acronyms] 'VS' has no definition. Raw Output: {"message": "[Docker.Acronyms] 'VS' has no definition.", "location": {"path": "content/manuals/build/bake/introduction.md", "range": {"start": {"line": 90, "column": 25}}}, "severity": "WARNING"}
## Next steps

To learn more about using Bake, see the following topics:
Expand Down
5 changes: 5 additions & 0 deletions content/manuals/build/building/best-practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@
Follow these recommendations on how to properly use the [Dockerfile instructions](/reference/dockerfile.md)
to create an efficient and maintainable Dockerfile.

> [!TIP]
>
> Want a better editing experience for Dockerfiles in VS Code?

Check warning on line 262 in content/manuals/build/building/best-practices.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.RecommendedWords] Consider using 'versus' instead of 'VS' Raw Output: {"message": "[Docker.RecommendedWords] Consider using 'versus' instead of 'VS'", "location": {"path": "content/manuals/build/building/best-practices.md", "range": {"start": {"line": 262, "column": 55}}}, "severity": "INFO"}

Check warning on line 262 in content/manuals/build/building/best-practices.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.Acronyms] 'VS' has no definition. Raw Output: {"message": "[Docker.Acronyms] 'VS' has no definition.", "location": {"path": "content/manuals/build/building/best-practices.md", "range": {"start": {"line": 262, "column": 55}}}, "severity": "WARNING"}
> Check out the [Docker VS Code Extension (experimental)](https://github.com/docker/vscode-extension) for linting, code navigation, and vulnerability scanning.
### FROM

Whenever possible, use current official images as the basis for your
Expand Down
5 changes: 5 additions & 0 deletions content/manuals/build/checks.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@
- Identifying potential issues or anti-patterns in your Dockerfile and build
options.

> [!TIP]
>
> Want a better editing experience for Dockerfiles in VS Code?

Check warning on line 41 in content/manuals/build/checks.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.RecommendedWords] Consider using 'versus' instead of 'VS' Raw Output: {"message": "[Docker.RecommendedWords] Consider using 'versus' instead of 'VS'", "location": {"path": "content/manuals/build/checks.md", "range": {"start": {"line": 41, "column": 55}}}, "severity": "INFO"}

Check warning on line 41 in content/manuals/build/checks.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.Acronyms] 'VS' has no definition. Raw Output: {"message": "[Docker.Acronyms] 'VS' has no definition.", "location": {"path": "content/manuals/build/checks.md", "range": {"start": {"line": 41, "column": 55}}}, "severity": "WARNING"}
> Check out the [Docker VS Code Extension (experimental)](https://github.com/docker/vscode-extension) for linting, code navigation, and vulnerability scanning.

Check warning on line 42 in content/manuals/build/checks.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.RecommendedWords] Consider using 'versus' instead of 'VS' Raw Output: {"message": "[Docker.RecommendedWords] Consider using 'versus' instead of 'VS'", "location": {"path": "content/manuals/build/checks.md", "range": {"start": {"line": 42, "column": 25}}}, "severity": "INFO"}

Check warning on line 42 in content/manuals/build/checks.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.Acronyms] 'VS' has no definition. Raw Output: {"message": "[Docker.Acronyms] 'VS' has no definition.", "location": {"path": "content/manuals/build/checks.md", "range": {"start": {"line": 42, "column": 25}}}, "severity": "WARNING"}
## Build with checks

Build checks are supported in:
Expand Down
5 changes: 5 additions & 0 deletions content/manuals/build/concepts/dockerfile.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,3 +278,8 @@ $ docker run -p 127.0.0.1:8000:8000 test:latest

This publishes the container's port 8000 to `http://localhost:8000` on the
Docker host.

> [!TIP]
>
> Want a better editing experience for Dockerfiles in VS Code?
> Check out the [Docker VS Code Extension (experimental)](https://github.com/docker/vscode-extension) for linting, code navigation, and vulnerability scanning.
5 changes: 5 additions & 0 deletions content/reference/compose-file/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,9 @@ The Compose Specification on Docker Docs is the Docker Compose implementation. I

Use the following links to navigate key sections of the Compose Specification.

> [!TIP]
>
> Want a better editing experience for Compose files in VS Code?
> Check out the [Docker VS Code Extension (experimental)](https://github.com/docker/vscode-extension) for linting, code navigation, and vulnerability scanning.

{{< grid >}}
Loading