From a786aaffbbd19963c3db674d0a457f5648e41a32 Mon Sep 17 00:00:00 2001 From: bwzhang Date: Tue, 2 Jul 2024 17:25:43 +0800 Subject: [PATCH] fix bug by using docker-proxy in the source file to get better compatibility --- moby.spec | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/moby.spec b/moby.spec index 6ec8481..ea4931a 100644 --- a/moby.spec +++ b/moby.spec @@ -7,7 +7,7 @@ Name: docker Version: 25.0.3 -Release: 7 +Release: 8 Summary: The open-source application container engine License: ASL 2.0 URL: https://www.docker.com @@ -72,7 +72,6 @@ BuildRequires: systemd-devel BuildRequires: tar BuildRequires: which BuildRequires: golang >= 1.18.0 -BuildRequires: docker-proxy %description engine Docker daemon binary and related utilities @@ -135,7 +134,7 @@ ver="$(%{_builddir}/%{_source_client}/build/docker --version)"; \ install -D -p -m 0755 $(readlink -f %{_builddir}/%{_source_engine}/bundles/dynbinary-daemon/dockerd) %{buildroot}%{_bindir}/dockerd # install proxy -install -D -p -m 0755 /usr/bin/docker-proxy %{buildroot}%{_bindir}/docker-proxy +install -D -p -m 0755 %{_builddir}/%{_source_engine}/bundles/dynbinary-daemon/docker-proxy %{buildroot}%{_bindir}/docker-proxy # install tini install -D -p -m 755 %{_builddir}/%{_source_docker_init}/tini-static %{buildroot}%{_bindir}/docker-init @@ -193,6 +192,12 @@ fi %systemd_postun_with_restart docker.service %changelog +* Tue Jul 02 2024 zhangbowei - 25.0.3-8 +- Type:bugfix +- ID:NA +- SUG:NA +- DESC:fix bug by using docker-proxy in the source file to get better compatibility + * Fri Jun 28 2024 shechenglong - 25.0.3-7 - DESC:software package name moby is changed to docker -- Gitee