diff --git a/Dockerfile b/Dockerfile index 6604b4b11342..963ac44db7d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/content/contribute/_index.md b/content/contribute/_index.md index ac9135373004..3801814cd10b 100644 --- a/content/contribute/_index.md +++ b/content/contribute/_index.md @@ -1,5 +1,6 @@ --- title: Contribute to Docker's docs +linkTitle: Contribute weight: 10 toc_max: 1 aliases: diff --git a/content/guides/bun/containerize.md b/content/guides/bun/containerize.md index ccd52d209981..3e914d5756ab 100644 --- a/content/guides/bun/containerize.md +++ b/content/guides/bun/containerize.md @@ -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. diff --git a/content/guides/bun/develop.md b/content/guides/bun/develop.md index bb3c6b390cee..0ef2815c37df 100644 --- a/content/guides/bun/develop.md +++ b/content/guides/bun/develop.md @@ -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 diff --git a/content/guides/cpp/develop.md b/content/guides/cpp/develop.md index d5f7a488a4a8..b3da1f6b8244 100644 --- a/content/guides/cpp/develop.md +++ b/content/guides/cpp/develop.md @@ -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 diff --git a/content/manuals/desktop/uninstall.md b/content/manuals/desktop/uninstall.md index d394967be919..d43695354e69 100644 --- a/content/manuals/desktop/uninstall.md +++ b/content/manuals/desktop/uninstall.md @@ -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//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//Library/Containers/com.docker.docker/`. This error can be ignored as you have successfully uninstalled Docker Desktop. +You can remove the directory `/Users//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 ``` diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 7591a1738f84..4158b0c70da2 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -5,7 +5,9 @@ Pricing About us Support - Contribute + {{- with .GetPage "/contribute" }} + {{ .LinkTitle }} + {{- end }}
diff --git a/netlify.toml b/netlify.toml index 131afe4533ee..fc2877542979 100644 --- a/netlify.toml +++ b/netlify.toml @@ -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"