Skip to content

Commit 8f85995

Browse files
aevesdockeraheckcrazy-maxsarahsanders-docker
authored
publish updates from main (#22650)
Automated pull request for publishing docs updates. --------- Signed-off-by: CrazyMax <[email protected]> Co-authored-by: Andreas Heck <[email protected]> Co-authored-by: Allie Sadler <[email protected]> Co-authored-by: CrazyMax <[email protected]> Co-authored-by: Sarah Sanders <[email protected]>
2 parents 3dd9e34 + 50bd730 commit 8f85995

File tree

7 files changed

+121
-9
lines changed

7 files changed

+121
-9
lines changed

.github/CODEOWNERS

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
# For more details, see https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
55

6-
/content/manuals/build/ @crazy-max @aevesdocker
6+
/content/manuals/build/ @crazy-max @ArthurFlag
77

8-
/content/manuals/build-cloud/ @crazy-max @aevesdocker
8+
/content/manuals/build-cloud/ @crazy-max @craig-osterhout
99

1010
/content/manuals/compose/ @aevesdocker
1111

@@ -19,11 +19,11 @@
1919

2020
/content/manuals/docker-hub/ @craig-osterhout
2121

22-
/content/manuals/engine/ @thaJeztah @aevesdocker
22+
/content/manuals/engine/ @thaJeztah @ArthurFlag
2323

24-
/content/reference/api/engine/ @thaJeztah @aevesdocker
24+
/content/reference/api/engine/ @thaJeztah @ArthurFlag
2525

26-
/content/reference/cli/ @thaJeztah @aevesdocker
26+
/content/reference/cli/ @thaJeztah @ArthurFlag
2727

2828
/content/manuals/subscription/ @sarahsanders-docker
2929

@@ -43,4 +43,4 @@
4343

4444
/content/manuals/ai/ @ArthurFlag
4545

46-
/_vendor @sarahsanders-docker
46+
/_vendor @sarahsanders-docker @ArthurFlag

_vendor/github.com/moby/buildkit/frontend/dockerfile/docs/reference.md

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

content/manuals/ai/model-runner.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,22 @@ Model ai/smollm2 pulled successfully
9797

9898
The models also display in the Docker Desktop Dashboard.
9999

100+
#### Pull from Hugging Face
101+
102+
You can also pull GGUF models directly from [Hugging Face](https://huggingface.co/models?library=gguf).
103+
104+
```console
105+
$ docker model pull hf.co/<model-you-want-to-pull>
106+
```
107+
108+
For example:
109+
110+
```console
111+
$ docker model pull hf.co/bartowski/Llama-3.2-1B-Instruct-GGUF
112+
```
113+
114+
Pulls the [bartowski/Llama-3.2-1B-Instruct-GGUF](https://huggingface.co/bartowski/Llama-3.2-1B-Instruct-GGUF).
115+
100116
### List available models
101117

102118
Lists all models currently pulled to your local environment.

content/manuals/security/for-admins/enforce-sign-in/methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To enforce sign-in for Docker Desktop on Windows, you can configure a registry k
2727
> [!IMPORTANT]
2828
>
2929
> As of Docker Desktop version 4.36 and later, you can add more than one organization. With Docker Desktop version 4.35 and earlier, if you add more than one organization sign-in enforcement silently fails.
30-
3. Use your organization's name, all lowercase as string data. If you're adding more than one organization, make sure there is an empty space between each organization name.
30+
3. Use your organization's name, all lowercase as string data. If you're adding more than one organization, make sure they are all on their own line. Don't use any other separators such as spaces or commas.
3131
4. Restart Docker Desktop.
3232
5. When Docker Desktop restarts, verify that the **Sign in required!** prompt appears.
3333

content/manuals/security/security-announcements.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ toc_min: 1
77
toc_max: 2
88
---
99

10+
## Docker Desktop 4.41.0 Security Update: CVE-2025-3224, CVE-2025-4095, and CVE-2025-3911
11+
12+
_Last updated May 15, 2025_
13+
14+
Three vulnerabilities in Docker Desktop were fixed on April 28 in the [4.41.0](https://docs.docker.com/desktop/release-notes/#4410) release.
15+
16+
- Fixed [CVE-2025-3224](https://www.cve.org/CVERecord?id=CVE-2025-3224) allowing an attacker with access to a user machine to perform an elevation of privilege when Docker Desktop updates.
17+
- Fixed [CVE-2025-4095](https://www.cve.org/CVERecord?id=CVE-2025-4095) where Registry Access Management (RAM) policies were not enforced when using a MacOS configuration profile, allowing users to pull images from unapproved registries.
18+
- Fixed [CVE-2025-3911](https://www.cve.org/CVERecord?id=CVE-2025-3911) allowing an attacker with read access to a user's machine to obtain sensitive information from Docker Desktop log files, including environment variables configured for running containers.
19+
20+
We strongly encourage you to update to Docker Desktop [4.41.0](https://docs.docker.com/desktop/release-notes/#4410).
21+
1022
## Docker Desktop 4.34.2 Security Update: CVE-2024-8695 and CVE-2024-8696
1123

1224
_Last updated September 13, 2024_

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ replace (
1616
github.com/docker/cli => github.com/docker/cli v28.1.0-rc.2+incompatible
1717
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.36.0
1818
github.com/docker/scout-cli => github.com/docker/scout-cli v1.15.0
19-
github.com/moby/buildkit => github.com/moby/buildkit v0.20.0
19+
github.com/moby/buildkit => github.com/moby/buildkit v0.22.0-rc1
2020
github.com/moby/moby => github.com/moby/moby v28.1.0-rc.2+incompatible
2121
)

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,8 @@ github.com/moby/buildkit v0.19.0 h1:w9G1p7sArvCGNkpWstAqJfRQTXBKukMyMK1bsah1HNo=
372372
github.com/moby/buildkit v0.19.0/go.mod h1:WiHBFTgWV8eB1AmPxIWsAlKjUACAwm3X/14xOV4VWew=
373373
github.com/moby/buildkit v0.20.0 h1:aF5RujjQ310Pn6SLL/wQYIrSsPXy0sQ5KvWifwq1h8Y=
374374
github.com/moby/buildkit v0.20.0/go.mod h1:HYFUIK+iGDRxRgdphZ9Nv0y1Fz7mv0HrU7xZoXx217E=
375+
github.com/moby/buildkit v0.22.0-rc1 h1:Q47jZZws7+0WhucTcm35NRV8NcO6n1SwIikzfqcGKLo=
376+
github.com/moby/buildkit v0.22.0-rc1/go.mod h1:j4pP5hxiTWcz7xuTK2cyxQislHl/N2WWHzOy43DlLJw=
375377
github.com/moby/locker v1.0.1/go.mod h1:S7SDdo5zpBK84bzzVlKr2V0hz+7x9hWbYC/kq7oQppc=
376378
github.com/moby/moby v24.0.2+incompatible h1:yH+5dRHH1x3XRKzl1THA2aGTy6CHYnkt5N924ADMax8=
377379
github.com/moby/moby v24.0.2+incompatible/go.mod h1:fDXVQ6+S340veQPv35CzDahGBmHsiclFwfEygB/TWMc=

0 commit comments

Comments
 (0)