Skip to content

Commit 4a035e8

Browse files
Merge pull request #22667 from docker/published-update
publish updates from main
2 parents d9c4cd9 + db322b2 commit 4a035e8

File tree

31 files changed

+143
-72
lines changed

31 files changed

+143
-72
lines changed

_vale/config/vocabularies/Docker/accept.txt

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@ Citrix
1515
CloudFront
1616
Codefresh
1717
Codespaces
18-
CouchDB
1918
Couchbase
19+
CouchDB
2020
Datadog
2121
Ddosify
2222
Debootstrap
2323
Dev
24-
Dex
2524
Dev Environments?
25+
Dex
2626
Django
27+
DMR
2728
Docker Build Cloud
2829
Docker Business
2930
Docker Dasboard
@@ -33,8 +34,8 @@ Docker Extension
3334
Docker Hub
3435
Docker Scout
3536
Docker Team
36-
Docker's
3737
Docker-Sponsored Open Source
38+
Docker's
3839
Dockerfile
3940
Dockerize
4041
Dockerizing
@@ -44,54 +45,55 @@ Fargate
4445
Fedora
4546
Flink
4647
GeoNetwork
48+
GGUF
4749
Git
4850
GitHub( Actions)?
4951
Google
5052
Grafana
5153
Gravatar
5254
HyperKit
53-
IPv[46]
54-
IPvlan
5555
Intel
5656
Intune
57-
JFrog
57+
IPv[46]
58+
IPvlan
5859
Jamf
5960
JetBrains
61+
JFrog
6062
JUnit
6163
Kerberos
6264
Kitematic
6365
Kubeadm
6466
Kubernetes
65-
Laravel
6667
Laradock
68+
Laravel
6769
Linux
6870
LinuxKit
6971
Logstash
7072
Mac
7173
Mail(chimp|gun)
7274
Microsoft
7375
MySQL
74-
NFSv\d
7576
Netplan
77+
NFSv\d
7678
Nginx
7779
Nutanix
7880
Nuxeo
7981
OAuth
82+
Okta
8083
Ollama
8184
OTel
82-
Okta
83-
PKG
8485
Paketo
86+
PKG
8587
Postgres
8688
PowerShell
8789
Python
8890
Ryuk
8991
S3
90-
SQLite
9192
Slack
9293
Snyk
9394
Solr
9495
SonarQube
96+
SQLite
9597
Syft
9698
Sysbox
9799
Sysdig

_vendor/github.com/docker/compose/v2/docs/reference/compose_config.md

Lines changed: 1 addition & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/github.com/docker/compose/v2/docs/reference/docker_compose_config.yaml

Lines changed: 10 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# github.com/moby/buildkit v0.22.0-rc1
33
# github.com/docker/buildx v0.23.0
44
# github.com/docker/cli v28.1.1+incompatible
5-
# github.com/docker/compose/v2 v2.36.0
5+
# github.com/docker/compose/v2 v2.36.1
66
# github.com/docker/scout-cli v1.15.0

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

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,33 @@ In the following image, you can see an example Docker command from Docker Hub. T
3838

3939
## Push the image
4040

41-
1. In the command line, run the `docker push` command that you see on Docker
42-
Hub. Note that your command will have your Docker ID, not "docker". For example, `docker push YOUR-USER-NAME/getting-started`.
41+
Let's try to push the image to Docker Hub.
42+
43+
1. In the command line, run the following commmand:
44+
45+
```console
46+
docker push docker/getting-started
47+
```
48+
49+
You'll see an error like this:
4350

4451
```console
4552
$ docker push docker/getting-started
4653
The push refers to repository [docker.io/docker/getting-started]
4754
An image does not exist locally with the tag: docker/getting-started
4855
```
4956

50-
Why did it fail? The push command was looking for an image named `docker/getting-started`, but
51-
didn't find one. If you run `docker image ls`, you won't see one either.
57+
This failure is expected because the image isn't tagged correctly yet.
58+
Docker is looking for an image name `docker/getting started`, but your
59+
local image is still named `getting-started`.
5260

53-
To fix this, you need to tag your existing image you've built to give it another name.
61+
You can confirm this by running:
5462

55-
2. Sign in to Docker Hub using the command `docker login -u YOUR-USER-NAME`.
63+
```console
64+
docker image ls
65+
```
5666

67+
2. To fix this, first sign in to Docker Hub using your Docker ID: `docker login YOUR-USER-NAME`.
5768
3. Use the `docker tag` command to give the `getting-started` image a new name. Replace `YOUR-USER-NAME` with your Docker ID.
5869

5970
```console

content/guides/go-prometheus-monitoring/containerize.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ COPY . .
4141
RUN go build -o /app .
4242

4343
# Final lightweight stage
44-
FROM alpine:3.17 AS final
44+
FROM alpine:3.21 AS final
4545

4646
# Copy the compiled binary from the builder stage
4747
COPY --from=builder /app /bin/app
@@ -63,7 +63,7 @@ The Dockerfile consists of two stages:
6363

6464
2. **Final stage**: This stage uses the official Alpine image as the base and copies the compiled binary from the build stage. It also exposes the application's port and runs the application.
6565

66-
You use the `alpine:3.17` image as the base image for the final stage. You copy the compiled binary from the build stage to the final image. You expose the application's port using the `EXPOSE` instruction and run the application using the `CMD` instruction.
66+
You use the `alpine:3.21` image as the base image for the final stage. You copy the compiled binary from the build stage to the final image. You expose the application's port using the `EXPOSE` instruction and run the application using the `CMD` instruction.
6767

6868
Apart from the multi-stage build, the Dockerfile also follows best practices such as using the official images, setting the working directory, and copying only the necessary files to the final image. You can further optimize the Dockerfile by other best practices.
6969

content/includes/tax-compliance.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
> [!IMPORTANT]
22
>
3-
> Starting July 1, 2024, Docker will begin collecting sales tax on subscription fees in compliance with state regulations for customers in the United States. For our global customers subject to VAT, the implementation will start rolling out on July 1, 2024. Note that while the roll out begins on this date, VAT charges may not apply to all applicable subscriptions immediately.
3+
> For United States customers, Docker began collecting sales tax on July 1, 2024.
4+
> For European customers, Docker began collecting VAT on March 1, 2025.
5+
> For United Kingdom customers, Docker began collecting VAT on May 1, 2025.
46
>
5-
> To ensure that tax assessments are correct, make sure that your [billing information](/billing/details/) and VAT/Tax ID, if applicable, are updated. If you're exempt from sales tax, see [Register a tax certificate](/billing/tax-certificate/).
7+
> To ensure that tax assessments are correct, make sure that your
8+
[billing information](/billing/details/) and VAT/Tax ID, if applicable, are
9+
updated. If you're exempt from sales tax, see
10+
[Register a tax certificate](/billing/tax-certificate/).

content/manuals/_index.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,17 @@ params:
3333
link: /testcontainers/
3434
ai:
3535
- title: Ask Gordon
36-
description: streamline your workflow and get the most out of the Docker ecosystem with your personal AI assistant.
36+
description: Streamline your workflow and get the most out of the Docker ecosystem with your personal AI assistant.
3737
icon: note_add
3838
link: /ai/gordon/
3939
- title: Docker Model Runner
40-
description: View and manage your local models
40+
description: View and manage your local models.
4141
icon: view_in_ar
4242
link: /model-runner/
43+
- title: MCP Catalog and Toolkit
44+
description: Augment your AI workflow with MCP servers.
45+
icon: /assets/icons/toolbox.svg
46+
link: /ai/mcp-catalog-and-toolkit/
4347
products:
4448
- title: Docker Desktop
4549
description: Your command center for container development.

content/manuals/admin/organization/general-settings.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ keywords: organization, settings, Admin Console
77

88
This section describes how to manage organization settings in the Docker Admin Console.
99

10-
## Configure general information
10+
## Configure organization information
1111

1212
General organization information appears on your organization landing page in the Admin Console.
1313

1414
This information includes:
15+
1516
- Organization Name
1617
- Company
1718
- Location
@@ -22,7 +23,7 @@ To edit this information:
2223

2324
1. Sign in to the [Admin Console](https://admin.docker.com).
2425
2. Select your company on the **Choose profile** page.
25-
3. Under **Organization settings**, select **General**.
26+
3. Under **Organization settings**, select **Organization information**.
2627
4. Specify the organization information and select **Save**.
2728

2829
## Next steps

content/manuals/admin/organization/orgs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ configure your organization.
110110

111111
- **Security and access**: Manage security settings. For more information, see [Security](/manuals/security/_index.md).
112112

113-
- **Organization settings**: Update general settings, manage your company settings, or [deactivate your organization](/manuals/admin/organization/deactivate-account.md).
113+
- **Organization settings**: Update organization information or [deactivate your organization](/manuals/admin/organization/deactivate-account.md).
114114

115115
{{< /tab >}}
116116
{{< tab name="Docker Hub" >}}

0 commit comments

Comments
 (0)