From 873892f4646a2719287a91985608b506f7b8446f Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Mon, 9 Dec 2024 16:16:49 +0100 Subject: [PATCH 1/5] chore: change codeowner for scout, registry Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- .github/CODEOWNERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index c36b15dd1a5f..dc7f09262de0 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -15,7 +15,7 @@ /content/manuals/extensions-sdk/ @aevesdocker -/content/manuals/scout/ @dvdksn +/content/manuals/scout/ @craig-osterhout /content/manuals/docker-hub/ @craig-osterhout @@ -29,7 +29,7 @@ /content/manuals/docker-hub/official_images/ @craig-osterhout -/content/manuals/registry/ @dvdksn +/content/manuals/registry/ @craig-osterhout /content/manuals/admin/ @sarahsanders-docker From 3ceb30f434e206ad8308ec1e710e28debc54e3c7 Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Mon, 9 Dec 2024 16:17:15 +0100 Subject: [PATCH 2/5] chore: add codeowner for _vendor Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- .github/CODEOWNERS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index dc7f09262de0..73ae0c427221 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -38,3 +38,5 @@ /content/manuals/accounts/ @sarahsanders-docker /hack @dvdksn + +/_vendor @dvdksn From 2c03bf117650649301c40ea94f181dc31f65b1e5 Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Mon, 9 Dec 2024 16:17:53 +0100 Subject: [PATCH 3/5] chore: add codeowner for cli and engine reference Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- .github/CODEOWNERS | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 73ae0c427221..06b820aa845d 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -21,6 +21,10 @@ /content/manuals/engine/ @dvdksn +/content/reference/api/engine/ @dvdksn + +/content/reference/cli/ @dvdksn + /content/manuals/subscription/ @sarahsanders-docker /content/manuals/security/ @aevesdocker From eaa2ac4f5cf042c6599b42b9691debdce05b9cad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Mon, 2 Dec 2024 11:11:56 +0100 Subject: [PATCH 4/5] engine: 27.4.0 release notes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Gronowski --- content/manuals/engine/release-notes/27.md | 71 ++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/content/manuals/engine/release-notes/27.md b/content/manuals/engine/release-notes/27.md index 3143c0d2aeae..0bfcdfbd0d55 100644 --- a/content/manuals/engine/release-notes/27.md +++ b/content/manuals/engine/release-notes/27.md @@ -23,6 +23,77 @@ For more information about: - Deprecated and removed features, see [Deprecated Engine Features](../deprecated.md). - Changes to the Engine API, see [Engine API version history](/reference/api/engine/version-history.md). +## 27.4 + +Release notes for Docker Engine version 27.4 releases. + +### 27.4.0 + +{{< release-date date="2024-12-09" >}} + + +For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones: + +- [docker/cli, 27.4.0 milestone](https://github.com/docker/cli/issues?q=is%3Aclosed+milestone%3A27.4.0) +- [moby/moby, 27.4.0 milestone](https://github.com/moby/moby/issues?q=is%3Aclosed+milestone%3A27.4.0) + +#### API + +- `GET /images/json` with the `manifests` option enabled now preserves the original order in which manifests appeared in the manifest-index. [moby/moby#48712](https://github.com/moby/moby/pull/48712) + +#### Bug fixes and enhancements + +- When reading logs with the `jsonfile` or `local` log drivers, any errors while trying to read or parse underlying log files will cause the rest of the file to be skipped and move to the next log file (if one exists) rather than returning an error to the client and closing the stream. The errors are viewable in the Docker Daemon logs and exported to traces when tracing is configured. [moby/moby#48842](https://github.com/moby/moby/pull/48842) +- When reading log files, compressed log files are now only decompressed when needed rather than decompressing all files before starting the log stream. [moby/moby#48842](https://github.com/moby/moby/pull/48842) +- Fix an issue that meant published ports from one container on a bridge network were not accessible from another container on the same network with `userland-proxy` disabled, if the kernel's `br_netfilter` module was not loaded and enabled. The daemon will now attempt to load the module and enable `bridge-nf-call-iptables` or `bridge-nf-call-ip6tables` when creating a network with the userland proxy disabled. [moby/moby#48685](https://github.com/moby/moby/pull/48685) +- Fix loading of `bridge` and `br_netfilter` kernel modules. [moby/moby#48966](https://github.com/moby/moby/pull/48966) +- containerd image store: Fix Docker daemon failing to fully start with a "context deadline exceeded error" with containerd snapshotter and many builds/images. [moby/moby#48954](https://github.com/moby/moby/pull/48954) +- containerd image store: Fix partially pulled images not being garbage-collected. [moby#48910](https://github.com/moby/moby/pull/48910), [moby/moby#48957](https://github.com/moby/moby/pull/48957) +- containerd image store: Fix `docker image inspect` outputting duplicate references in `RepoDigests`. [moby/moby#48785](https://github.com/moby/moby/pull/48785) +- containerd image store: Fix not being able to connect to some insecure registries in cases where the HTTPS request failed due to a non-TLS related error. [moby/moby#48758](https://github.com/moby/moby/pull/48758) +- containerd image store: Remove a confusing warning log when tagging a non-dangling image. [moby/moby#49010](https://github.com/moby/moby/pull/49010) +- containerd image store: Do not underline names in `docker image ls --tree`. [docker/cli#5519](https://github.com/docker/cli/pull/5519) +- containerd image store: Change name of `USED` column in `docker image ls --tree` to `IN USE`. [docker/cli#5518](https://github.com/docker/cli/pull/5518) +- `dockerd-rootless-setuptool.sh install --force` now ignores RootlessKit errors [moby/moby#48695](https://github.com/moby/moby/pull/48695) +- Disable IPv6 Duplicate Address Detection (DAD) for addresses assigned to the bridges belonging to bridge networks. [moby/moby#48684](https://github.com/moby/moby/pull/48684) +- Remove BuildKit init timeout. [moby/moby#48963](https://github.com/moby/moby/pull/48963) +- Ignore "dataset does not exist" error when removing dataset on ZFS. [moby/moby#48968](https://github.com/moby/moby/pull/48968) +- Client: Prevent idle connections leaking FDs. [moby/moby#48764](https://github.com/moby/moby/pull/48764) +- Fix anonymous volumes being created through the `--mount` option not being marked as anonymous. [moby/moby#48755](https://github.com/moby/moby/pull/48755) +- After a daemon restart with live-restore, ensure an iptables jump to the `DOCKER-USER` chain is placed before other rules. [moby/moby#48714](https://github.com/moby/moby/pull/48714) +- Fix a possible memory leak caused by OTel meters. [moby/moby#48693](https://github.com/moby/moby/pull/48693) +- Create distinct build history db for each image store. [moby/moby#48688](https://github.com/moby/moby/pull/48688) +- Fix an issue that caused excessive memory usage when DNS resolution was made in a tight loop. [moby/moby#48840](https://github.com/moby/moby/pull/48840) +- Fix a bug preventing image pulls from being cancelled during `docker run`. [docker/cli#5654](https://github.com/docker/cli/pull/5654) +- The `docker login` and `docker logout` command no longer update the configuration file if the credentials didn't change. [docker/cli#5569](https://github.com/docker/cli/pull/5569) +- Optimise `docker stats` to reduce flickering issues. [docker/cli#5588](https://github.com/docker/cli/pull/5588), [docker/cli#5635](https://github.com/docker/cli/pull/5635) +- Fix inaccessible plugins paths preventing plugins from being detected. [docker/cli#5652](https://github.com/docker/cli/pull/5652) +- Add support for `events --filter` in cobra generated shell completions. [docker/cli#5614](https://github.com/docker/cli/pull/5614) +- Fix bash completion for `events --filter daemon=`. [docker/cli#5563](https://github.com/docker/cli/pull/5563) +- Improve shell completion of containers for `docker rm`. [docker/cli#5540](https://github.com/docker/cli/pull/5540) +- Add shell completion for `--platform` flags. [docker/cli#5540](https://github.com/docker/cli/pull/5540) +- rootless: Make `/etc/cdi` and `/var/run/cdi` accessible by the Container Device Interface (CDI) integration. [moby/moby#49027](https://github.com/moby/moby/pull/49027) + +#### Removed + +- Deprecate `Daemon.Exists()` and `Daemon.IsPaused()`. These functions are no longer used and will be removed in the next release. [moby/moby#48719](https://github.com/moby/moby/pull/48719) +- Deprecate `container.ErrNameReserved` and `container.ErrNameNotReserved`. [moby/moby#48697](https://github.com/moby/moby/pull/48697) +- Deprecate `pkg/platform` - this package is only used internally, and will be removed in the next release. [moby/moby#48863](https://github.com/moby/moby/pull/48863) +- Deprecate `RepositoryInfo.Class`. This field is no longer used, and will be removed in the next release. [moby/moby#49013](https://github.com/moby/moby/pull/49013) +- Go SDK: Fix deprecation of `cli/command.ConfigureAuth()`, which was deprecated since v27.2.1. [docker/cli#5552](https://github.com/docker/cli/pull/5552) +- Go SDK: Deprecate `cli.Errors` type in favour of Go's `errors.Join` [docker/cli#5548](https://github.com/docker/cli/pull/5548) + +#### Packaging updates + +- Update Go runtime to 1.22.10. [moby/moby#49026](https://github.com/moby/moby/pull/49026), [docker/cli#5669](https://github.com/docker/cli/pull/5669), [docker/docker-ce-packaging#1120](https://github.com/docker/docker-ce-packaging/pull/1120). +- Update Compose to [v2.31.0](https://github.com/docker/compose/releases/tag/v2.31.0). [docker/docker-ce-packaging#1100](https://github.com/docker/docker-ce-packaging/pull/1117) +- Update BuildKit to [v0.17.3](https://github.com/moby/buildkit/releases/tag/v0.17.3). [moby/moby#49024](https://github.com/moby/moby/pull/49024) +- Update Buildx to [v0.19.1](https://github.com/docker/buildx/releases/tag/v0.19.1). [docker/docker-ce-packaging#1115](https://github.com/docker/docker-ce-packaging/pull/1115) +- Update containerd to [v1.7.24](https://github.com/containerd/containerd/releases/tag/v1.7.24). [moby/moby#48934](https://github.com/moby/moby/pull/48934) +- Update containerd (static binaries only) to [v1.7.24](https://github.com/containerd/containerd/releases/tag/v1.7.24). [moby/moby#48919](https://github.com/moby/moby/pull/48919) +- Update runc to [v1.2.2](https://github.com/opencontainers/runc/releases/tag/v1.2.2). [moby/moby#48919](https://github.com/moby/moby/pull/48919) + + ## 27.3 Release notes for Docker Engine version 27.3 releases. From 8a805f4f0b31f17c85a5255cde3122fae90be068 Mon Sep 17 00:00:00 2001 From: Craig Osterhout <103533812+craig-osterhout@users.noreply.github.com> Date: Mon, 9 Dec 2024 08:36:19 -0800 Subject: [PATCH 5/5] hub: add archive repo (#21553) ## Description - Added topic for archive or activate a repository - Updated repo landing page topic to add new archive topic - Added note to repo information topic Modified pages: - https://deploy-preview-21553--docsdocker.netlify.app/docker-hub/repos/ - https://deploy-preview-21553--docsdocker.netlify.app/docker-hub/repos/archive/ - https://deploy-preview-21553--docsdocker.netlify.app/docker-hub/repos/manage/information/ ## Related issues or tickets ENGDOCS-2337 ## Reviews - [ ] Technical review - [ ] Editorial review - [ ] Product review --------- Signed-off-by: Craig Co-authored-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- _vale/config/vocabularies/Docker/accept.txt | 1 + content/manuals/docker-hub/repos/_index.md | 3 +- content/manuals/docker-hub/repos/archive.md | 63 ++++++++++++++++++ .../repos/images/outdated-icon.webp | Bin 0 -> 198 bytes .../docker-hub/repos/manage/information.md | 4 ++ 5 files changed, 70 insertions(+), 1 deletion(-) create mode 100644 content/manuals/docker-hub/repos/archive.md create mode 100644 content/manuals/docker-hub/repos/images/outdated-icon.webp diff --git a/_vale/config/vocabularies/Docker/accept.txt b/_vale/config/vocabularies/Docker/accept.txt index 354982cbc736..97b29fc63320 100644 --- a/_vale/config/vocabularies/Docker/accept.txt +++ b/_vale/config/vocabularies/Docker/accept.txt @@ -132,6 +132,7 @@ Zsh [Ss]yscalls? [Ss]ysfs [Tt]oolchains? +[Uu]narchived? [Vv]irtiofs [Vv]irtualize [Ww]alkthrough diff --git a/content/manuals/docker-hub/repos/_index.md b/content/manuals/docker-hub/repos/_index.md index 7eb9e73b7c00..5ead03bebe34 100644 --- a/content/manuals/docker-hub/repos/_index.md +++ b/content/manuals/docker-hub/repos/_index.md @@ -46,7 +46,8 @@ In this section, learn how to: - [Automated builds](./manage/builds/_index.md): Integrate with GitHub or Bitbucket for automated builds. Every code change triggers an image rebuild, supporting continuous integration and delivery. - + +- [Archive](./archive.md) an outdated or unsupported repository. - [Delete](./delete.md) a repository. - [Manage personal settings](./settings.md): For your account, you can set personal settings for repositories, including default repository privacy and autobuild diff --git a/content/manuals/docker-hub/repos/archive.md b/content/manuals/docker-hub/repos/archive.md new file mode 100644 index 000000000000..18c89bfccc27 --- /dev/null +++ b/content/manuals/docker-hub/repos/archive.md @@ -0,0 +1,63 @@ +--- +description: Learn how to archive or unarchive a repository on Docker Hub +keywords: Docker Hub, Hub, repositories, archive, unarchive +title: Archive or unarchive a repository +linkTitle: Archive +toc_max: 3 +weight: 35 +--- + +You can archive a repository on Docker Hub to mark it as read-only and indicate +that it's no longer actively maintained. This helps prevent the use of outdated +or unsupported images in workflows. Archived repositories can also be unarchived +if needed. + +Docker Hub highlights repositories that haven't been updated in over a year by +displaying an icon ({{< inline-image src="./images/outdated-icon.webp" +alt="outdated icon" >}}) next to them on the [**Repositories** +page](https://hub.docker.com/repositories/). Consider reviewing these +highlighted repositories and archiving them if necessary. + +When a repository is archived, the following occurs: + +- The repository information can't be modified. +- New images can't be pushed to the repository. +- An **Archived** label is displayed on the public repository page. +- Users can still pull the images. + +You can unarchive an archived repository to remove the archived state. When +unarchived, the following occurs: + +- The repository information can be modified. +- New images can be pushed to the repository. +- The **Archived** label is removed on the public repository page. + +## Archive a repository + +1. Sign in to [Docker Hub](https://hub.docker.com). +2. Select **Repositories**. + + A list of your repositories appears. + +3. Select a repository. + + The **General** page for the repository appears. + +4. Select the **Settings** tab. +5. Select **Archive repository**. +6. Enter the name of your repository to confirm. +7. Select **Archive**. + +## Unarchive a repository + +1. Sign in to [Docker Hub](https://hub.docker.com). +2. Select **Repositories**. + + A list of your repositories appears. + +3. Select a repository. + + The **General** page for the repository appears. + +4. Select the **Settings** tab. +5. Select **Unarchive repository**. \ No newline at end of file diff --git a/content/manuals/docker-hub/repos/images/outdated-icon.webp b/content/manuals/docker-hub/repos/images/outdated-icon.webp new file mode 100644 index 0000000000000000000000000000000000000000..153d3dcea0926d5cb590c3f78ef565921313de43 GIT binary patch literal 198 zcmV;%06G6sNk&G#00012MM6+kP&gp60000m1pu7^Dir_`06vjIn@T04q9LdV0I(7X zYyiFG04~5ckO@zIJcwWxBYrC6)Dhz&5CH!BrYyhpuC83>V)-%aHGiy>uY_p1c(J($ zM7Yac(OM+&LmNz!*Pt4Lm%LGmNjtqg4^1pPr-vWAY3}}VYa@o^nz~a2#?3wypEEw( z`x~Q0f_*lzF9@7f#rC&9zu|>}^<1jZUoyY1cTn|R&G`FU5K%y;zC_uRt^fc40FMt< AP5=M^ literal 0 HcmV?d00001 diff --git a/content/manuals/docker-hub/repos/manage/information.md b/content/manuals/docker-hub/repos/manage/information.md index a6da93c26d79..0edff44ca97d 100644 --- a/content/manuals/docker-hub/repos/manage/information.md +++ b/content/manuals/docker-hub/repos/manage/information.md @@ -12,6 +12,10 @@ Each repository can include a description, an overview, and categories to help users understand its purpose and usage. Adding clear repository information ensures that others can find your images and use them effectively. +You can only modify the repository information of repositories that aren't +archived. If a repository is archived, you must unarchive it to modify the +information. For more details, see [Unarchive a repository](../archive.md#unarchive-a-repository). + ## Repository description The description appears in search results when using the `docker search` command