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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG GO_VERSION=1.23
ARG HTMLTEST_VERSION=0.17.0
ARG HUGO_VERSION=0.139.0
ARG NODE_VERSION=22
ARG PAGEFIND_VERSION=1.1.1
ARG PAGEFIND_VERSION=1.3.0

# base defines the generic base stage
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS base
Expand Down
1 change: 1 addition & 0 deletions content/contribute/_index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Contribute to Docker's docs
linkTitle: Contribute
weight: 10
toc_max: 1
aliases:
Expand Down
2 changes: 1 addition & 1 deletion content/guides/bun/containerize.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ directory to a directory that you want to work in, and run the following
command to clone the repository:

```console
$ git clone https://github.com/Pradumnasaraf/bun-docker.git
$ git clone https://github.com/dockersamples/bun-docker.git
```

You should now have the following contents in your `bun-docker` directory.
Expand Down
2 changes: 1 addition & 1 deletion content/guides/bun/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ In this section, you'll learn how to set up a development environment for your c
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:

```console
$ git clone https://github.com/Pradumnasaraf/bun-docker.git
$ git clone https://github.com/dockersamples/bun-docker.git
```

## Automatically update services
Expand Down
2 changes: 1 addition & 1 deletion content/guides/cpp/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ In this section, you'll learn how to set up a development environment for your c
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:

```console
$ git clone https://github.com/Pradumnasaraf/c-plus-plus-docker.git
$ git clone https://github.com/dockersamples/c-plus-plus-docker.git
```

## Automatically update services
Expand Down
11 changes: 10 additions & 1 deletion content/manuals/desktop/uninstall.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,20 @@ You can also uninstall Docker Desktop from the CLI. Run:
$ /Applications/Docker.app/Contents/MacOS/uninstall
```

You may encounter the following error when uninstalling Docker Desktop using the uninstall command.
```console
$ /Applications/Docker.app/Contents/MacOS/uninstall
Password:
Uninstalling Docker Desktop...
Error: unlinkat /Users/<USER_HOME>/Library/Containers/com.docker.docker/.com.apple.containermanagerd.metadata.plist: operation not permitted
```
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.
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**).

After uninstalling Docker Desktop, there may be some residual files left behind which you can remove:

```console
$ rm -rf ~/Library/Group\ Containers/group.com.docker
$ rm -rf ~/Library/Containers/com.docker.docker
$ rm -rf ~/.docker
```

Expand Down
4 changes: 3 additions & 1 deletion layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
<a class="underline-offset-2 hover:underline" href="https://www.docker.com/pricing/">Pricing</a>
<a class="underline-offset-2 hover:underline" href="https://www.docker.com/company/">About us</a>
<a class="underline-offset-2 hover:underline" href="https://www.docker.com/support/">Support</a>
<a class="underline-offset-2 hover:underline" href="https://github.com/docker/docs/blob/main/CONTRIBUTING.md">Contribute</a>
{{- with .GetPage "/contribute" }}
<a class="underline-offset-2 hover:underline" href="{{ .Permalink }}">{{ .LinkTitle }}</a>
{{- end }}
</div>
<hr class="text-divider-light dark:text-divider-dark" />
<div class="grid lg:grid-cols-3 place-items-center gap-8 grid-cols-1">
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ HUGO_ENABLEGITINFO = "true"
HUGO_ENVIRONMENT = "preview"

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