<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/utils/dockerd, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/'/>
<updated>2026-03-15T07:19:09Z</updated>
<entry>
<title>utils/dockerd: assign PKG_CPE_ID</title>
<updated>2026-03-15T07:19:09Z</updated>
<author>
<name>Fabrice Fontaine</name>
</author>
<published>2026-03-14T18:48:53Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=a041ff49b96f820029d0b3a0af5fadb744063fa5'/>
<id>urn:sha1:a041ff49b96f820029d0b3a0af5fadb744063fa5</id>
<content type='text'>
cpe:/a:mobyproject:moby is the correct CPE ID for docker:
https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:mobyproject:moby

Signed-off-by: Fabrice Fontaine &lt;fontaine.fabrice@gmail.com&gt;
</content>
</entry>
<entry>
<title>dockerd: remove cgroupfs-mount dependency</title>
<updated>2025-09-10T22:11:48Z</updated>
<author>
<name>Wesley Gimenes</name>
</author>
<published>2025-08-09T21:02:11Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=7de0c8799b3257bb8fe0695c6bbf04e4690d55f6'/>
<id>urn:sha1:7de0c8799b3257bb8fe0695c6bbf04e4690d55f6</id>
<content type='text'>
The package `cgroupfs-mount` has been removed.

Signed-off-by: Wesley Gimenes &lt;wehagy@proton.me&gt;
</content>
</entry>
<entry>
<title>dockerd: fix build issue with custom core.abbrev value in .gitconfig</title>
<updated>2025-03-20T06:25:03Z</updated>
<author>
<name>Vladimir Oltean</name>
</author>
<published>2025-03-11T18:34:49Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=2f80944c2b2520caf31db0721a254cc2c549ab8e'/>
<id>urn:sha1:2f80944c2b2520caf31db0721a254cc2c549ab8e</id>
<content type='text'>
As documented by "man git-rev-parse", the "--short" option shortens
commit sha1sums to at least "length" characters, equal to core.abbrev if
that is specified in ~/.gitconfig.

The development processes of some other open source projects require
having a

[core]
	abbrev = 12

in the .gitconfig, which is incompatible with the way in which docker
wants PKG_GIT_SHORT_COMMIT.

On my system, I get these errors:

  make[3]: Entering directory 'feeds/packages/utils/dockerd'
  (...)
  # Verify CLI is the same version
  ( CLI_MAKEFILE="../docker/Makefile"; CLI_VERSION=$( grep --only-matching --perl-regexp '(?&lt;=PKG_VERSION:=)(.*)' "${CLI_MAKEFILE}" ); if [ "${CLI_VERSION}" != "27.3.1" ]; then echo "ERROR: Expected 'PKG_VERSION:=27.3.1' in '${CLI_MAKEFILE}', found 'PKG_VERSION:=${CLI_VERSION}'"; exit 1; fi )
  # Verify PKG_GIT_SHORT_COMMIT
  ( EXPECTED_PKG_GIT_SHORT_COMMIT=$( feeds/packages/utils/dockerd/git-short-commit.sh 'github.com/moby/moby' 'v27.3.1' 'tmp/git-short-commit/dockerd-27.3.1' ); if [ "${EXPECTED_PKG_GIT_SHORT_COMMIT}" != "41ca978" ]; then echo "ERROR: Expected 'PKG_GIT_SHORT_COMMIT:=${EXPECTED_PKG_GIT_SHORT_COMMIT}', found 'PKG_GIT_SHORT_COMMIT:=41ca978'"; exit 1; fi )
  Trying remote 'github.com/moby/moby'
  fatal: 'github.com/moby/moby' does not appear to be a git repository
  fatal: Could not read from remote repository.

  Please make sure you have the correct access rights
  and the repository exists.
  Trying remote 'https://github.com/moby/moby'
  remote: Enumerating objects: 11117, done.
  From https://github.com/moby/moby
   * tag                         v27.3.1    -&gt; FETCH_HEAD
  HEAD is now at 41ca978a0a54 Merge pull request #48525 from thaJeztah/27.x_backport_govulncheck_permissions
  ERROR: Expected 'PKG_GIT_SHORT_COMMIT:=41ca978a0a54', found 'PKG_GIT_SHORT_COMMIT:=41ca978'
  make[3]: *** [Makefile:198: build_dir/target-aarch64_generic_glibc/dockerd-27.3.1/.prepared_d76b59f2eb81424899b1fbb9e44f77e2_6664517399ebbbc92a37c5bb081b5c53] Error 1
  make[3]: Leaving directory 'feeds/packages/utils/dockerd'
  time: package/feeds/packages/dockerd/compile#1.71#1.18#5.38
      ERROR: package/feeds/packages/dockerd failed to build.

Since --short supports a length argument, use that to break the
dependency on the system .gitconfig.

Signed-off-by: Vladimir Oltean &lt;olteanv@gmail.com&gt;
</content>
</entry>
<entry>
<title>dockerd: add docker-storage to init</title>
<updated>2025-03-13T16:51:21Z</updated>
<author>
<name>Keith T. Garner</name>
</author>
<published>2025-03-12T19:57:48Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=f2aa53cdef8aabcac972fde6ab92180f40850353'/>
<id>urn:sha1:f2aa53cdef8aabcac972fde6ab92180f40850353</id>
<content type='text'>
Docker's backend storage driver can be configurable for certain
filesystems. The default is the overlay storage driver, but if you run
openwrt on a system with btrfs, this will allow you to override the
default configuration by settings the storage_driver in uci in dockerd's
global section. This value will be used in the created dockerd.json
file.

Signed-off-by: Keith T. Garner &lt;kgarner@kgarner.com&gt;
</content>
</entry>
<entry>
<title>dockerd: Improved error msg for rev ver dep check</title>
<updated>2025-02-20T12:50:04Z</updated>
<author>
<name>Gerard Ryan</name>
</author>
<published>2025-02-13T09:14:14Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=5e2e9b7e918e61e414e3bccf94c22734d72414e6'/>
<id>urn:sha1:5e2e9b7e918e61e414e3bccf94c22734d72414e6</id>
<content type='text'>
Signed-off-by: Gerard Ryan &lt;G.M0N3Y.2503@gmail.com&gt;
</content>
</entry>
<entry>
<title>dockerd: Update to 27.3.1</title>
<updated>2024-10-02T20:21:20Z</updated>
<author>
<name>Milinda Brantini</name>
</author>
<published>2024-10-01T09:24:56Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=ade186898684bfe40beb3e7f3fab59ae5fe7938a'/>
<id>urn:sha1:ade186898684bfe40beb3e7f3fab59ae5fe7938a</id>
<content type='text'>
Signed-off-by: Milinda Brantini &lt;C_A_T_T_E_R_Y@outlook.com&gt;</content>
</entry>
<entry>
<title>dockerd: fix typo in config for no_proxy</title>
<updated>2024-09-13T10:25:22Z</updated>
<author>
<name>Joe Zheng</name>
</author>
<published>2024-09-13T09:01:31Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=dcea616c6134c0d1630174d2fff6a95ffcf60fe6'/>
<id>urn:sha1:dcea616c6134c0d1630174d2fff6a95ffcf60fe6</id>
<content type='text'>
the "http_proxy" here should be "no_proxy"

Signed-off-by: Joe Zheng &lt;joe.zheng@intel.com&gt;
</content>
</entry>
<entry>
<title>dockerd: increase PKG_RELEASE for http proxy update</title>
<updated>2024-09-13T06:22:50Z</updated>
<author>
<name>Tianling Shen</name>
</author>
<published>2024-09-13T05:03:19Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=9ec663013beba8fe6800d8bfbd5b75c33e8f804a'/>
<id>urn:sha1:9ec663013beba8fe6800d8bfbd5b75c33e8f804a</id>
<content type='text'>
Fixes: e795bab25325 ("dockerd: add config options for http proxy")
Signed-off-by: Tianling Shen &lt;cnsztl@immortalwrt.org&gt;
</content>
</entry>
<entry>
<title>dockerd: add config options for http proxy</title>
<updated>2024-09-13T04:52:05Z</updated>
<author>
<name>Joe Zheng</name>
</author>
<published>2024-09-06T15:14:14Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=e795bab253253e260b61e156d5e5c00e8189cb98'/>
<id>urn:sha1:e795bab253253e260b61e156d5e5c00e8189cb98</id>
<content type='text'>
add config options to set http porxy for dockerd, refer to
https://docs.docker.com/engine/daemon/proxy/ for details

use the *_proxy environment variable as the default value, so in most
cases, dockerd can use the system proxy settings just like opkg.

Signed-off-by: Joe Zheng &lt;joe.zheng@intel.com&gt;
</content>
</entry>
<entry>
<title>dockerd: Update to 27.1.2</title>
<updated>2024-08-24T10:29:44Z</updated>
<author>
<name>Milinda Brantini</name>
</author>
<published>2024-08-16T15:21:20Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=a58474e8381d405357247b20e944f3a3318ea173'/>
<id>urn:sha1:a58474e8381d405357247b20e944f3a3318ea173</id>
<content type='text'>
Signed-off-by: Milinda Brantini &lt;C_A_T_T_E_R_Y@outlook.com&gt;</content>
</entry>
</feed>
