Skip to content

Commit aef4fca

Browse files
authored
Merge pull request #21812 from docker/published-update
publish updates from main
2 parents b4bc231 + 941957c commit aef4fca

File tree

8 files changed

+19
-7
lines changed

8 files changed

+19
-7
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARG GO_VERSION=1.23
66
ARG HTMLTEST_VERSION=0.17.0
77
ARG HUGO_VERSION=0.139.0
88
ARG NODE_VERSION=22
9-
ARG PAGEFIND_VERSION=1.1.1
9+
ARG PAGEFIND_VERSION=1.3.0
1010

1111
# base defines the generic base stage
1212
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS base

content/contribute/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Contribute to Docker's docs
3+
linkTitle: Contribute
34
weight: 10
45
toc_max: 1
56
aliases:

content/guides/bun/containerize.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ directory to a directory that you want to work in, and run the following
3636
command to clone the repository:
3737

3838
```console
39-
$ git clone https://github.com/Pradumnasaraf/bun-docker.git
39+
$ git clone https://github.com/dockersamples/bun-docker.git
4040
```
4141

4242
You should now have the following contents in your `bun-docker` directory.

content/guides/bun/develop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In this section, you'll learn how to set up a development environment for your c
2323
Clone the sample application to use with this guide. Open a terminal, change directory to a directory that you want to work in, and run the following command to clone the repository:
2424

2525
```console
26-
$ git clone https://github.com/Pradumnasaraf/bun-docker.git
26+
$ git clone https://github.com/dockersamples/bun-docker.git
2727
```
2828

2929
## Automatically update services

content/guides/cpp/develop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In this section, you'll learn how to set up a development environment for your c
2424
Clone the sample application to use with this guide. Open a terminal, change directory to a directory that you want to work in, and run the following command to clone the repository:
2525

2626
```console
27-
$ git clone https://github.com/Pradumnasaraf/c-plus-plus-docker.git
27+
$ git clone https://github.com/dockersamples/c-plus-plus-docker.git
2828
```
2929

3030
## Automatically update services

content/manuals/desktop/uninstall.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,20 @@ You can also uninstall Docker Desktop from the CLI. Run:
6363
$ /Applications/Docker.app/Contents/MacOS/uninstall
6464
```
6565

66+
You may encounter the following error when uninstalling Docker Desktop using the uninstall command.
67+
```console
68+
$ /Applications/Docker.app/Contents/MacOS/uninstall
69+
Password:
70+
Uninstalling Docker Desktop...
71+
Error: unlinkat /Users/<USER_HOME>/Library/Containers/com.docker.docker/.com.apple.containermanagerd.metadata.plist: operation not permitted
72+
```
73+
The operation not permitted error is reported either on the file `.com.apple.containermanagerd.metadata.plist` or on the parent directory `/Users/<USER_HOME>/Library/Containers/com.docker.docker/`. This error can be ignored as you have successfully uninstalled Docker Desktop.
74+
You can remove the directory `/Users/<USER_HOME>/Library/Containers/com.docker.docker/` later by allowing **Full Disk Access** to the terminal application you are using (**System Settings** > **Privacy & Security** > **Full Disk Access**).
75+
6676
After uninstalling Docker Desktop, there may be some residual files left behind which you can remove:
6777

6878
```console
6979
$ rm -rf ~/Library/Group\ Containers/group.com.docker
70-
$ rm -rf ~/Library/Containers/com.docker.docker
7180
$ rm -rf ~/.docker
7281
```
7382

layouts/partials/footer.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
<a class="underline-offset-2 hover:underline" href="https://www.docker.com/pricing/">Pricing</a>
66
<a class="underline-offset-2 hover:underline" href="https://www.docker.com/company/">About us</a>
77
<a class="underline-offset-2 hover:underline" href="https://www.docker.com/support/">Support</a>
8-
<a class="underline-offset-2 hover:underline" href="https://github.com/docker/docs/blob/main/CONTRIBUTING.md">Contribute</a>
8+
{{- with .GetPage "/contribute" }}
9+
<a class="underline-offset-2 hover:underline" href="{{ .Permalink }}">{{ .LinkTitle }}</a>
10+
{{- end }}
911
</div>
1012
<hr class="text-divider-light dark:text-divider-dark" />
1113
<div class="grid lg:grid-cols-3 place-items-center gap-8 grid-cols-1">

netlify.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ HUGO_ENABLEGITINFO = "true"
99
HUGO_ENVIRONMENT = "preview"
1010

1111
[context.deploy-preview]
12-
command = "hugo --gc --minify -b $DEPLOY_PRIME_URL && npx pagefind@v1.1.1"
12+
command = "hugo --gc --minify -b $DEPLOY_PRIME_URL && npx pagefind@v1.3.0"

0 commit comments

Comments
 (0)