This commit is contained in:
Sergey Zhemoytel 2024-05-17 21:33:26 +00:00
parent 10269d39cd
commit b6780d1ce8
2 changed files with 15 additions and 8 deletions

View file

@ -1,6 +1,6 @@
sources: sources:
buildx-0.10.5.tar.gz: ebfb3eb86e2e7776d90930fa2eef0b22193cddf3 buildx-0.14.0.tar.gz: d28aea9ed2a9fca969e4ba2ad926c2daf9e49c29
cli-26.0.2.tar.gz: ae03c10fe3c124e90217aa18b283a4bafb775c28 cli-26.1.3.tar.gz: 63b83ed6efe0d0b0bc01345c74c80893c21ead01
libnetwork-master.tar.gz: 3d5fff39d764e56b927223527e3355c07a82939f libnetwork-master.tar.gz: 3d5fff39d764e56b927223527e3355c07a82939f
moby-26.0.2.tar.gz: c2f20445c261e598ecdba01ceb80c456b6693e3b moby-26.1.3.tar.gz: ca749290f43c89e8ceb38365b340af8ec6ff2a7e
tini-0.19.0.tar.gz: 2245210bdd29faea02e566a192df4c7df702b264 tini-0.19.0.tar.gz: 2245210bdd29faea02e566a192df4c7df702b264

View file

@ -1,7 +1,7 @@
# modifying the dockerinit binary breaks the SHA1 sum check by docker # modifying the dockerinit binary breaks the SHA1 sum check by docker
%global tini_version 0.19.0 %global tini_version 0.19.0
%global buildx_version 0.10.5 %global buildx_version 0.14.0
%global project docker %global project docker
%global repo %{project} %global repo %{project}
@ -16,7 +16,7 @@
Summary: Automates deployment of containerized applications Summary: Automates deployment of containerized applications
Name: docker Name: docker
Version: 26.0.2 Version: 26.1.3
%global moby_version %{version} %global moby_version %{version}
Release: 1 Release: 1
License: ASL 2.0 License: ASL 2.0
@ -62,8 +62,9 @@ Requires(pre): systemd
%systemd_requires %systemd_requires
# With docker >= 1.11 you now need containerd (and runC or crun as a dep) # With docker >= 1.11 you now need containerd (and runC or crun as a dep)
Requires: containerd Requires: containerd
Requires: runc Recommends: runc
Recommends: crun Requires: crun
Requires: docker-compose
# need xz to work with ubuntu images # need xz to work with ubuntu images
# https://bugzilla.redhat.com/show_bug.cgi?id=1045220 # https://bugzilla.redhat.com/show_bug.cgi?id=1045220
Requires: xz Requires: xz
@ -186,7 +187,13 @@ install -d %{buildroot}%{_sysconfdir}/docker
# from having net access -- allow them to keep using iptables for now # from having net access -- allow them to keep using iptables for now
cat > %{buildroot}%{_sysconfdir}/docker/daemon.json << 'EOF' cat > %{buildroot}%{_sysconfdir}/docker/daemon.json << 'EOF'
{ {
"iptables": true "iptables": true,
"default-runtime": "crun",
"runtimes": {
"crun": {
"path": "/usr/bin/crun"
}
}
} }
EOF EOF
install -D -p -m 755 %{SOURCE14} %{buildroot}%{_sysconfdir}/nftables/%{name}.nft install -D -p -m 755 %{SOURCE14} %{buildroot}%{_sysconfdir}/nftables/%{name}.nft