Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion content/contribute/components/badges.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ You can also make a badge a link.

### Usage guidelines

We use badges to indicate new content and product content in various stages of the release lifcycle:
We use badges to indicate new content and product content in various stages of the release lifecycle:

- The violet badge to highlight new early access or experimental content
- The blue badge to highlight beta content
Expand Down
2 changes: 1 addition & 1 deletion content/guides/docker-build-cloud/dev.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Demo: set up and use Docker Build Cloud in development"
description: Learn how to use Docker Buld Cloud for local builds.
description: Learn how to use Docker Build Cloud for local builds.
weight: 20
---

Expand Down
2 changes: 1 addition & 1 deletion content/guides/genai-pdf-bot/containerize.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Containerize a generative AI application
linkTitle: Containerize your app
weight: 10
keywords: python, generative ai, genai, llm, neo4j, ollama, containerize, intitialize, langchain, openai
keywords: python, generative ai, genai, llm, neo4j, ollama, containerize, initialize, langchain, openai
description: Learn how to containerize a generative AI (GenAI) application.
aliases:
- /guides/use-case/genai-pdf-bot/containerize/
Expand Down
2 changes: 1 addition & 1 deletion content/guides/genai-pdf-bot/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ When running Ollama in a container, you should have a CUDA-supported GPU. While
To run Ollama in a container and provide GPU access:

1. Install the prerequisites.
- For Docker Engine on Linux, install the [NVIDIA Container Toolkilt](https://github.com/NVIDIA/nvidia-container-toolkit).
- For Docker Engine on Linux, install the [NVIDIA Container Toolkit](https://github.com/NVIDIA/nvidia-container-toolkit).
- 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)
2. Add the Ollama service and a volume in your `compose.yaml`. The following is
the updated `compose.yaml`:
Expand Down
2 changes: 1 addition & 1 deletion content/guides/java/containerize.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ RUN java -Djarmode=layertools -jar target/app.jar extract --destination target/e
# The example below uses eclipse-turmin's JRE image as the foundation for running the app.
# By specifying the "17-jre-jammy" tag, it will also use whatever happens to be the
# most recent version of that tag when you build your Dockerfile.
# If reproducability is important, consider using a specific digest SHA, like
# If reproducibility is important, consider using a specific digest SHA, like
# eclipse-temurin@sha256:99cede493dfd88720b610eb8077c8688d3cca50003d76d1d539b0efc8cca72b4.
FROM eclipse-temurin:17-jre-jammy AS final

Expand Down
4 changes: 2 additions & 2 deletions content/guides/jupyter.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ managed by Docker.
When you remove a container, all data in that container is deleted. To save
notebooks outside of the container, you can use a [volume](/engine/storage/volumes/).

### Run a JupterLab container with a volume
### Run a JupyterLab container with a volume

To start the container with a volume, open a terminal and run the following command

Expand Down Expand Up @@ -378,7 +378,7 @@ To share your image and data, you'll use [Docker Hub](https://hub.docker.com/).
Other users can now download and run your image using the `docker run` command. They need to replace `YOUR-USER-NAME` with your Docker ID.

```console
$ docker run --rm -p 8889:8888 YOUR-USER-NAME/my-jupyer-image start-notebook.py --NotebookApp.token='my-token'
$ docker run --rm -p 8889:8888 YOUR-USER-NAME/my-jupyter-image start-notebook.py --NotebookApp.token='my-token'
```

### Share your volume
Expand Down
2 changes: 1 addition & 1 deletion content/guides/rag-ollama/containerize.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Containerize a RAG application
linkTitle: Containerize your app
weight: 10
keywords: python, generative ai, genai, llm, ollama, containerize, intitialize, qdrant
keywords: python, generative ai, genai, llm, ollama, containerize, initialize, qdrant
description: Learn how to containerize a RAG application.
aliases:
- /guides/use-case/rag-ollama/containerize/
Expand Down
2 changes: 1 addition & 1 deletion content/guides/rust/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ For the sample application, you'll use a variation of the backend from the react
# The example below uses the debian bullseye image as the foundation for running the app.
# By specifying the "bullseye-slim" tag, it will also use whatever happens to be the
# most recent version of that tag when you build your Dockerfile. If
# reproducability is important, consider using a digest
# reproducibility is important, consider using a digest
# (e.g., debian@sha256:ac707220fbd7b67fc19b112cee8170b41a9e97f703f588b2cdbbcdcecdd8af57).
FROM debian:bullseye-slim AS final

Expand Down
2 changes: 1 addition & 1 deletion content/manuals/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ params:
link: /extensions/
services:
- title: Docker Hub
description: Discover, share, and integrate container images
description: Discover, share, and integrate container images.
icon: hub
link: /docker-hub/
- title: Docker Scout
Expand Down
2 changes: 1 addition & 1 deletion content/manuals/build/bake/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Bake is an experimental feature, and we are looking for

{{% /experimental %}}

Bake is a feature of Docker Buildx that lets you define your build configuraton
Bake is a feature of Docker Buildx that lets you define your build configuration
using a declarative file, as opposed to specifying a complex CLI expression. It
also lets you run multiple builds concurrently with a single invocation.

Expand Down
2 changes: 1 addition & 1 deletion content/manuals/build/cache/invalidation.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Build cache invalidation
description: Dig into the details abouw how cache invalidation works for Docker's build cache
description: Dig into the details about how cache invalidation works for Docker's build cache
keywords: build, buildx, buildkit, cache, invalidation, cache miss
---

Expand Down
2 changes: 1 addition & 1 deletion content/manuals/build/ci/github-actions/build-summary.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: GitHub Actions build summary
linkTitle: Build summary
descripion: Get an overview of your Docker Builds with GitHub Actions
description: Get an overview of your Docker Builds with GitHub Actions
keywords: github actions, gha, build, summary, annotation
---

Expand Down
2 changes: 1 addition & 1 deletion content/manuals/compose/how-tos/profiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Using profiles with Compose
linkTitle: Use service profiles
weight: 20
desription: How to use profiles with Docker Compose
description: How to use profiles with Docker Compose
keywords: cli, compose, profile, profiles reference
aliases:
- /compose/profiles/
Expand Down
6 changes: 3 additions & 3 deletions content/manuals/compose/releases/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ This release fixes a build issue with Docker Desktop for Windows introduced in C

* Added support of the `privileged` attribute in the `service.build` section. Pull Request [compose#10112](https://github.com/docker/compose/pull/10112)
* Introduced `--ignore-buildable` to ignore buildable images on pull. Fixed [compose#8805](https://github.com/docker/compose/issues/8805)
* Introduceed `--no-attach` to ignore some service outputs. Fixed [compose#8546](https://github.com/docker/compose/issues/8546)
* Introduced `--no-attach` to ignore some service outputs. Fixed [compose#8546](https://github.com/docker/compose/issues/8546)
* Fixed issue with `logs` when `driver:none` is set. Fixed [compose#9030](https://github.com/docker/compose/issues/9030)
* Compose now relies on dockerCLI.streams. Pull Request [compose#10082](https://github.com/docker/compose/pull/10082)
* Fixed issue with service hash that MUST exclude replicas. Fixed [compose#10077](https://github.com/docker/compose/issues/10077)
Expand Down Expand Up @@ -955,7 +955,7 @@ For the full change log or additional information, check the [Compose repository
- Fixed intermittent conflict errors when using `depends_on`. Fixes [compose#9014](https://github.com/docker/compose/issues/9014)
- Cleared service `CMD` when entry point is overridden. Fixes [compose#9622](https://github.com/docker/compose/issues/9622)
- Configured default builder export when no `build.platforms` defined. Fixes [compose#9856](https://github.com/docker/compose/issues/9856)
- Fixed a bug to keep the platform defined, in priority, via DOCKER_DEFAULT_PLATFORM or the `service.platform` attribut. Fixes [compose#9864](https://github.com/docker/compose/issues/9864)
- Fixed a bug to keep the platform defined, in priority, via DOCKER_DEFAULT_PLATFORM or the `service.platform` attribute. Fixes [compose#9864](https://github.com/docker/compose/issues/9864)
- Removed support for `DOCKER_HOST` in `.env` files. Fixes [compose#9210](https://github.com/docker/compose/issues/9210)
- Fixed a bug to ensure clean service command if entry point is overridden in run command. Fixes [compose#9622](https://github.com/docker/compose/issues/9622)
- Deps: fixed race condition during graph traversal. Fixes [compose#9014](https://github.com/docker/compose/issues/9014)
Expand Down Expand Up @@ -1270,7 +1270,7 @@ For the full change log or additional information, check the [Compose repository
- Provided checksums.txt file and added `--binary` to allow verification in different OS. Fixes [#9388](https://github.com/docker/compose/issues/9388).
- Added changes so locally pulled image's ID is inspected and persisted to `com.docker.compose.image`. Fixes [#9357](https://github.com/docker/compose/issues/9357).
- Fixed issue regarding IPAM gateway setup. Fixes [#9330](https://github.com/docker/compose/issues/9330).
- Added support for ppc64le archictecture for docker compose binary.
- Added support for ppc64le architecture for docker compose binary.
- Fixed search/replace typo in `--no-TTY` documentation.

For the full change log or additional information, check the [Compose repository 2.5.0 release page](https://github.com/docker/compose/releases/tag/v2.5.0).
Expand Down
1 change: 1 addition & 0 deletions content/manuals/desktop/previous-versions/2.x-mac.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ title: Docker Desktop for Mac 2.x release notes
toc_min: 1
toc_max: 2
aliases: /desktop/mac/release-notes/2.x/
sitemap: false
---

This page contains release notes for Docker Desktop for Mac 2.x.
Expand Down
1 change: 1 addition & 0 deletions content/manuals/desktop/previous-versions/2.x-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ title: Docker for Windows 2.x release notes
toc_min: 1
toc_max: 2
aliases: /desktop/windows/release-notes/2.x/
sitemap: false
---

This page contains release notes for Docker Desktop for Windows 2.x.
Expand Down
1 change: 1 addition & 0 deletions content/manuals/desktop/previous-versions/3.x-mac.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ aliases:
- /desktop/mac/previous-versions/
- /docker-for-mac/previous-versions/
- /desktop/mac/release-notes/3.x/
sitemap: false
---

This page contains release notes for Docker Desktop for Mac 3.x.
Expand Down
1 change: 1 addition & 0 deletions content/manuals/desktop/previous-versions/3.x-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ aliases:
- /desktop/windows/previous-versions/
- /docker-for-windows/previous-versions/
- /desktop/windows/release-notes/3.x/
sitemap: false
---

This page contains release notes for Docker Desktop for Windows 3.x.
Expand Down
1 change: 1 addition & 0 deletions content/manuals/desktop/previous-versions/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ build:
render: never
title: Previous releases
weight: 200
sitemap: false
---
1 change: 1 addition & 0 deletions content/manuals/desktop/previous-versions/archive-mac.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ toc_min: 1
toc_max: 2
aliases:
- /desktop/mac/release-notes/archive/
sitemap: false
---

This page contains release notes for older versions of Docker Desktop for Mac.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ toc_min: 1
toc_max: 2
aliases:
- /desktop/windows/release-notes/archive/
sitemap: false
---

This page contains release notes for older versions of Docker Desktop for Windows.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ toc_min: 1
toc_max: 2
aliases:
- /desktop/mac/release-notes/edge-releases/
sitemap: false
---

This page contains information about Docker Desktop Edge releases. Edge releases give you early access to our newest features. Note that some of the features may be experimental, and some of them may not ever reach the Stable release.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ toc_min: 1
toc_max: 2
aliases:
- /desktop/windows/release-notes/edge-releases/
sitemap: false
---

This page contains information about Docker Desktop Edge releases. Edge releases give you early access to our newest features. Note that some of the features may be experimental, and some of them may not ever reach the Stable release.
Expand Down
4 changes: 2 additions & 2 deletions content/manuals/desktop/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ weight: 220

This page contains information about the new features, improvements, known issues, and bug fixes in Docker Desktop releases. For frequently asked questions about Docker Desktop releases, see [FAQs](faqs/releases.md).

Docker Desktop versions older than 6 months from the latest release are not available for download.
Docker Desktop versions older than 6 months from the latest release are not available for download. Previous release notes are available in our [documentation repository](https://github.com/docker/docs/tree/main/content/manuals/desktop/previous-versions).

Take a look at the [Docker Public Roadmap](https://github.com/orgs/docker/projects/51/views/1?filterQuery=) to see what's coming next.

Expand Down Expand Up @@ -97,7 +97,7 @@ Take a look at the [Docker Public Roadmap](https://github.com/orgs/docker/projec

#### For all platforms

- Fixed a bug that caused the CLI to become idle when a container was started with AutoRemove (`--rm`) but whose port bindings would be rejected by Docker Dekstop at start-up.
- Fixed a bug that caused the CLI to become idle when a container was started with AutoRemove (`--rm`) but whose port bindings would be rejected by Docker Desktop at start-up.
- Fixed a bug where diagnostics collection would fail sporadically on the **Support** screen.
- Fixed a bug where folders wouldn't expand in a container's **File** tab. Fixes [docker/for-win#14204](https://github.com/docker/for-win/issues/14204).
- In-app updates now respect the proxy settings.
Expand Down
2 changes: 1 addition & 1 deletion content/manuals/desktop/uninstall.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: How to uninstall Docker Desktop
keywords: Windows, unintall, Mac, Linux, Docker Desktop
keywords: Windows, uninstall, Mac, Linux, Docker Desktop
title: Uninstall Docker Desktop
linkTitle: Uninstall
weight: 210
Expand Down
2 changes: 1 addition & 1 deletion content/manuals/desktop/use-desktop/container.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ and select the **System default** option under **Choose your terminal**.

#### Open the integrated terminal in debug mode

Debug mode requires a [Pro, Team, or Business subcription](/subscription/details/). Debug mode has several advantages, such as:
Debug mode requires a [Pro, Team, or Business subscription](/subscription/details/). Debug mode has several advantages, such as:

- A customizable toolbox. The toolbox comes with many standard Linux tools
pre-installed, such as `vim`, `nano`, `htop`, and `curl`. For more details, see the [`docker debug` CLI reference](/reference/cli/docker/debug/).
Expand Down
2 changes: 1 addition & 1 deletion content/manuals/docker-hub/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ Each organization page now breaks down into these tabs:
* **New:** Teams - search by team or username, and open up any team page to
manage the team
* **New:** Invitees (conditional tab, only if an invite exists) - resend or
remove invitiations from this tab
remove invitations from this tab
* Repositories
* Settings
* Billing
Expand Down
2 changes: 1 addition & 1 deletion content/manuals/engine/release-notes/17.05.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ toc_max: 2
* Add `--format` option to `docker node ls` [#30424](https://github.com/docker/docker/pull/30424)
* Add `--prune` option to `docker stack deploy` to remove services that are no longer defined in the docker-compose file [#31302](https://github.com/docker/docker/pull/31302)
* Add `PORTS` column for `docker service ls` when using `ingress` mode [#30813](https://github.com/docker/docker/pull/30813)
- Fix unnescessary re-deploying of tasks when environment-variables are used [#32364](https://github.com/docker/docker/pull/32364)
- Fix unnecessary re-deploying of tasks when environment-variables are used [#32364](https://github.com/docker/docker/pull/32364)
- Fix `docker stack deploy` not supporting `endpoint_mode` when deploying from a docker compose file [#32333](https://github.com/docker/docker/pull/32333)
- Proceed with startup if cluster component cannot be created to allow recovering from a broken swarm setup [#31631](https://github.com/docker/docker/pull/31631)

Expand Down
2 changes: 1 addition & 1 deletion content/manuals/engine/release-notes/18.03.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ toc_max: 2

* Gracefully remove LB endpoints from services [docker/libnetwork#2112](https://github.com/docker/libnetwork/pull/2112)
* Retry other external DNS servers on ServFail [docker/libnetwork#2121](https://github.com/docker/libnetwork/pull/2121)
* Improve scalabiltiy of bridge network isolation rules [docker/libnetwork#2117](https://github.com/docker/libnetwork/pull/2117)
* Improve scalability of bridge network isolation rules [docker/libnetwork#2117](https://github.com/docker/libnetwork/pull/2117)
* Allow for larger preset property values, do not override [docker/libnetwork#2124](https://github.com/docker/libnetwork/pull/2124)
* Prevent panics on concurrent reads/writes when calling `changeNodeState` [docker/libnetwork#2136](https://github.com/docker/libnetwork/pull/2136)

Expand Down
2 changes: 1 addition & 1 deletion content/manuals/engine/release-notes/18.05.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ toc_max: 2
- Allow for larger preset property values, do not override. [docker/libnetwork#2124](https://github.com/docker/libnetwork/pull/2124)
- networkdb: User write lock in handleNodeEvent. [docker/libnetwork#2136](https://github.com/docker/libnetwork/pull/2136)
* Import libnetwork fix for rolling updates. [moby/moby#36638](https://github.com/moby/moby/pull/36638)
* Update libnetwork to improve scalabiltiy of bridge network isolation rules. [moby/moby#36774](https://github.com/moby/moby/pull/36774)
* Update libnetwork to improve scalability of bridge network isolation rules. [moby/moby#36774](https://github.com/moby/moby/pull/36774)
- Fix a misused network object name. [moby/moby#36745](https://github.com/moby/moby/pull/36745)

### Runtime
Expand Down
4 changes: 2 additions & 2 deletions content/manuals/engine/security/trust/deploying_notary.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ The easiest way to deploy Notary Server is by using Docker Compose. To follow th

1. Clone the Notary repository.

```consolse
```console
$ git clone https://github.com/theupdateframework/notary.git
```

2. Build and start Notary Server with the sample certificates.

```consolse
```console
$ docker compose up -d
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ import {
} from "@mui/material";
import { createDockerDesktopClient } from "@docker/extension-api-client";

//obtain docker destkop extension client
//obtain docker desktop extension client
const ddClient = createDockerDesktopClient();

export function App() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Package and release your extension
description: Docker extension disctribution
description: Docker extension distribution
keywords: Docker, extensions, sdk, distribution
aliases:
- /desktop/extensions-sdk/extensions/DISTRIBUTION/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ People can install your extension by typing `docker extension install my/awesome

However, this option doesn't provide a preview of the extension before it's installed.

## Createa a share URL
## Create a share URL

Docker lets you share your extensions using a URL.

Expand Down
Loading
Loading