Blame moby-engine.spec

138c485
# This specfile is licensed under:
138c485
# SPDX-License-Identifier: MIT
138c485
# SPDX-FileCopyrightText: Fedora Project Authors
138c485
# SPDX-FileCopyrightText: 2022 Maxwell G <gotmax@e.email>
138c485
# See %%{name}.spec.license for the full license text.
2f56825
37290cc
# moby
0f0e28f
%global goipath_moby github.com/docker/docker
3596b9c
%global git_moby https://%{goipath_moby}
aec27ef
%global commit_moby f756502055d2e36a84f2068e6620bea5ecf09058
2f56825
%global shortcommit_moby %(c=%{commit_moby}; echo ${c:0:7})
2f56825
37290cc
# cli
0f0e28f
%global goipath_cli github.com/docker/cli
3596b9c
%global git_cli https://%{goipath_cli}
aec27ef
%global commit_cli aa7e414fdcb23a66e8fabbef0a560ef1769eace5
37290cc
%global shortcommit_cli %(c=%{commit_cli}; echo ${c:0:7})
2f56825
2f56825
# tini
2f56825
%global git_tini https://github.com/krallin/tini
37290cc
%global commit_tini de40ad007797e0dcd8b7126f27bb87401d224240
2f56825
%global shortcommit_tini %(c=%{commit_tini}; echo ${c:0:7})
2f56825
0f0e28f
Name:           moby-engine
9248a6d
Version: 20.10.17
abbda29
Release: 6%{?dist}
2f56825
Summary: The open-source application container engine
a86774b
License:        Apache-2.0
3596b9c
Source0: %{git_moby}/archive/v%{version}/moby-%{version}.tar.gz
3596b9c
Source1: %{git_cli}/archive/v%{version}/cli-%{version}.tar.gz
3596b9c
Source2: %{git_tini}/archive/%{commit_tini}/tini-%{shortcommit_tini}.tar.gz
0f0e28f
Source3:        docker.service
0f0e28f
Source4:        docker.sysconfig
679b9eb
# Seperate file containing virtual provides for bundled deps that's %%include'd in the specfile.
679b9eb
Source5: provides.spec.inc
138c485
# Specfile license
138c485
Source6:        moby-engine.spec.license
0f0e28f
URL:            https://www.docker.com
2f56825
3d23934
ExclusiveArch:  %{golang_arches}
3d23934
7563363
BuildRequires:  golang(github.com/docker/libnetwork)
7563363
BuildRequires:  pkgconfig(libbtrfsutil)
7563363
BuildRequires:  pkgconfig(devmapper)
7563363
BuildRequires:  golang
7563363
BuildRequires:  go-rpm-macros
7563363
BuildRequires:  go-md2man
7563363
BuildRequires:  pkgconfig(libseccomp) >= 2.3.0
7563363
BuildRequires:  make
7563363
BuildRequires:  pkgconfig(audit)
7563363
BuildRequires:  pkgconfig(systemd)
7563363
BuildRequires:  firewalld-filesystem
f190099
f190099
# Build dependencies for tini
f190099
BuildRequires: cmake
f190099
BuildRequires: glibc-static
2f56825
2f56825
# required packages on install
2f56825
Requires: container-selinux
2f56825
Requires: iptables
2f56825
Requires: systemd
2f56825
Requires: tar
2f56825
Requires: xz
2f56825
Requires: pigz
b27960a
Requires: runc
b27960a
Requires: containerd
2f56825
2f56825
# Resolves: rhbz#1165615
2f56825
Requires: device-mapper-libs >= 1.02.90-1
2f56825
d24afc5
# Replace the old Docker packages
0f0e28f
Obsoletes:      docker < 2:%{version}-%{release}
0f0e28f
Obsoletes:      docker-latest < 2:%{version}-%{release}
0f0e28f
Obsoletes:      docker-common < 2:%{version}-%{release}
0f0e28f
Provides:       docker = %{version}-%{release}
0f0e28f
Provides:       docker-latest = %{version}-%{release}
d24afc5
2f56825
# conflicting packages
0f0e28f
Conflicts:      docker
0f0e28f
Conflicts:      docker-latest
0f0e28f
Conflicts:      docker-common
0f0e28f
Conflicts:      docker-io
0f0e28f
Conflicts:      docker-engine-cs
0f0e28f
Conflicts:      docker-ce
0f0e28f
Conflicts:      docker-ce-cli
0f0e28f
Conflicts:      docker-ee
0f0e28f
Conflicts:      podman-docker
2f56825
679b9eb
%include %{SOURCE5}
ec7f551
2f56825
%description
2f56825
Docker is an open source project to build, ship and run any application as a
2f56825
lightweight container.
2f56825
2f56825
Docker containers are both hardware-agnostic and platform-agnostic. This means
2f56825
they can run anywhere, from your laptop to the largest EC2 compute instance and
2f56825
everything in between - and they don't require you to use a particular
2f56825
language, framework or packaging system. That makes them great building blocks
2f56825
for deploying and scaling web apps, databases, and backend services without
2f56825
depending on a particular stack or provider.
2f56825
2f56825
%package fish-completion
2f56825
Summary: Fish completion files for %{name}
c088e16
BuildArch: noarch
2f56825
Requires: %{name} = %{version}-%{release}
2f56825
Requires: fish
0f0e28f
Conflicts:      docker-fish-completion
0f0e28f
Obsoletes:      docker-fish-completion < 2:%{version}-%{release}
0f0e28f
Provides:       docker-fish-completion = %{version}-%{release}
2f56825
2f56825
%description fish-completion
2f56825
This package installs %{summary}.
2f56825
2f56825
%package zsh-completion
2f56825
Summary: Zsh completion files for %{name}
c088e16
BuildArch: noarch
2f56825
Requires: %{name} = %{version}-%{release}
2f56825
Requires: zsh
0f0e28f
Conflicts:      docker-zsh-completion
0f0e28f
Obsoletes:      docker-zsh-completion < 2:%{version}-%{release}
0f0e28f
Provides:       docker-zsh-completion = %{version}-%{release}
2f56825
2f56825
%description zsh-completion
2f56825
This package installs %{summary}.
2f56825
2f56825
%package nano
b730400
Summary: GNU nano syntax highlighting files for Moby
c088e16
BuildArch: noarch
2f56825
Requires: %{name} = %{version}-%{release}
2f56825
Requires: nano
2f56825
2f56825
%description nano
2f56825
This package installs %{summary}.
2f56825
2f56825
%prep
c088e16
%setup -q -a 1 -a 2 -n moby-%{version}
2f56825
37290cc
# correct rpmlint errors for bash completion
37290cc
sed -i '/env bash/d' cli-%{version}/contrib/completion/bash/docker
2f56825
2f56825
2f56825
%build
3596b9c
mkdir -p _build/bin
37290cc
2f56825
# build docker-proxy / libnetwork
3b30c6b
(
3596b9c
3596b9c
        # Build binary using `golang-github-docker-libnetwork-devel`
3596b9c
        # (github.com/docker/libnetwork) installed in system GOPATH.
3596b9c
        export GOPATH="%{_datadir}/gocode"
0f0e28f
        %gobuild -o _build/bin/docker-proxy github.com/docker/libnetwork/cmd/proxy
3b30c6b
)
2f56825
0f0e28f
# build tini (installed as docker-init)
3b30c6b
(
3b30c6b
        cd tini-%{commit_tini}
b1b323b
        %cmake
62dc2fd
        make tini-static -C "%{__cmake_builddir}"
3b30c6b
)
2f56825
3596b9c
%global buildtime %(date --utc --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +"%Y-%m-%dT%H:%M:%SZ")
2f56825
# build engine
3b30c6b
(
0f0e28f
        mkdir -p src/github.com/docker
3596b9c
        # Link source and vendored deps into local GOPATH.
3596b9c
        ln -fns ../../.. src/%{goipath_moby}
3596b9c
        # Build using source and vendored deps in local GOPATH.
7fce04d
        export GOPATH="${PWD}"
7fce04d
        export GO111MODULE=off
3596b9c
        export LDFLAGS="-w"
3596b9c
        export LDFLAGS+=" -X github.com/docker/docker/dockerversion.Version=%{version}"
3596b9c
        export LDFLAGS+=" -X github.com/docker/docker/dockerversion.GitCommit=%{shortcommit_moby}"
3596b9c
        export LDFLAGS+=" -X github.com/docker/docker/dockerversion.IAmStatic=false"
3596b9c
        export LDFLAGS+=" -X 'github.com/docker/docker/dockerversion.BuildTime=%{buildtime}'"
ec7f551
        export DOCKER_BUILDTAGS="seccomp selinux journald"
c088e16
        export BUILDTAGS="${DOCKER_BUILDTAGS}"
c088e16
        export GOBUILDTAGS="${BUILDTAGS}"
0f0e28f
        %gobuild -o _build/bin/dockerd %{goipath_moby}/cmd/dockerd
3596b9c
        # VERSION=%%{version} DOCKER_GITCOMMIT=%%{shortcommit_moby} bash sh dynbinary
3596b9c
        # mv bundles/dynbinary-daemon/dockerd-%{version} _build/bin/dockerd
3b30c6b
)
2f56825
2f56825
# build cli
3b30c6b
(
37290cc
        cd cli-%{version}
0f0e28f
        mkdir -p src/github.com/docker
3596b9c
        # Link source and vendored deps into local GOPATH.
3596b9c
        ln -fns ../../.. src/%{goipath_cli}
3596b9c
        # export DISABLE_WARN_OUTSIDE_CONTAINER=1
3596b9c
        # Build using source and vendored deps in local GOPATH.
3b30c6b
        export GOPATH="${PWD}"
37290cc
        export GO111MODULE=off
3596b9c
        export LDFLAGS="\
3596b9c
            -w \
3596b9c
            -X \"github.com/docker/cli/cli/version.GitCommit=%{shortcommit_cli}\" \
3596b9c
            -X \"github.com/docker/cli/cli/version.BuildTime=%{buildtime}\" \
3596b9c
            -X \"github.com/docker/cli/cli/version.Version=%{version}\" \
3596b9c
    "
c088e16
        export BUILDTAGS="pkcs11"
c088e16
        export GOBUILDTAGS="${BUILDTAGS}"
0f0e28f
        %gobuild -o ../_build/bin/docker %{goipath_cli}/cmd/docker
3596b9c
        # make VERSION=%%{version} GITCOMMIT=%%{shortcommit_cli} dynbinary
3b30c6b
        man/md2man-all.sh
3b30c6b
)
2f56825
2f56825
%install
2f56825
# install binary
0f0e28f
install -Dpm 755 _build/bin/docker _build/bin/dockerd -t %{buildroot}%{_bindir}/
2f56825
2f56825
# install proxy
0f0e28f
install -Dpm 755 _build/bin/docker-proxy -t %{buildroot}%{_libexecdir}/docker/
2f56825
2f56825
# install tini
0f0e28f
install -Dpm 755 tini-%{commit_tini}/%{__cmake_builddir}/tini-static %{buildroot}%{_libexecdir}/docker/docker-init
2f56825
2f56825
# install udev rules
0f0e28f
install -Dpm 644 contrib/udev/80-docker.rules -t %{buildroot}%{_usr}/lib/udev/rules.d/
2f56825
2f56825
# add init scripts
3596b9c
install -Dpm 644 %{SOURCE3} contrib/init/systemd/docker.socket -t %{buildroot}%{_unitdir}/
3a2fa17
3a2fa17
# for additional args
0f0e28f
install -Dpm 644 %{SOURCE4} %{buildroot}%{_sysconfdir}/sysconfig/docker
2f56825
2f56825
# add bash, zsh, and fish completions
0f0e28f
install -Dpm 644 cli-%{version}/contrib/completion/bash/docker -t %{buildroot}%{_datadir}/bash-completion/completions/
0f0e28f
install -Dpm 644 cli-%{version}/contrib/completion/zsh/_docker -t %{buildroot}%{_datadir}/zsh/site-functions/
0f0e28f
install -Dpm 644 cli-%{version}/contrib/completion/fish/docker.fish -t %{buildroot}%{_datadir}/fish/vendor_completions.d/
2f56825
2f56825
# install manpages
3596b9c
install -Dpm 644 cli-%{version}/man/man1/*.1 -t %{buildroot}%{_mandir}/man1/
3596b9c
install -Dpm 644 cli-%{version}/man/man5/*.5 -t %{buildroot}%{_mandir}/man5/
3596b9c
install -Dpm 644 cli-%{version}/man/man8/*.8 -t %{buildroot}%{_mandir}/man8/
2f56825
2f56825
# add nano files
3596b9c
install -Dpm 644 contrib/syntax/nano/Dockerfile.nanorc -t %{buildroot}%{_datadir}/nano/
2f56825
2f56825
for cli_file in LICENSE MAINTAINERS NOTICE README.md; do
37290cc
    cp "cli-%{version}/$cli_file" "cli-$cli_file"
2f56825
done
2f56825
41eeacf
%pre
0f0e28f
getent group docker >/dev/null || groupadd -r docker || :
41eeacf
2f56825
%post
0f0e28f
%systemd_post docker.service docker.socket
8a8c5cd
%firewalld_reload
2f56825
2f56825
%preun
0f0e28f
%systemd_preun docker.service docker.socket
2f56825
2f56825
%postun
0f0e28f
%systemd_postun_with_restart docker.service
2f56825
2f56825
%files
37290cc
%license LICENSE cli-LICENSE
37290cc
%doc AUTHORS CHANGELOG.md CONTRIBUTING.md MAINTAINERS NOTICE README.md
2f56825
%doc cli-MAINTAINERS cli-NOTICE cli-README.md
0f0e28f
%config(noreplace) %{_sysconfdir}/sysconfig/docker
0f0e28f
%{_bindir}/docker
0f0e28f
%{_bindir}/dockerd
0f0e28f
%dir %{_libexecdir}/docker/
0f0e28f
%{_libexecdir}/docker/docker-proxy
0f0e28f
%{_libexecdir}/docker/docker-init
0f0e28f
%{_usr}/lib/udev/rules.d/80-docker.rules
0f0e28f
%{_unitdir}/docker.service
0f0e28f
%{_unitdir}/docker.socket
0f0e28f
%{_datadir}/bash-completion/completions/docker
0f0e28f
%{_mandir}/man1/docker*.1*
0f0e28f
%{_mandir}/man5/{Dockerfile,docker-config-json}.5*
0f0e28f
%{_mandir}/man8/dockerd.8*
2f56825
2f56825
%files zsh-completion
0f0e28f
%{_datadir}/zsh/site-functions/_docker
2f56825
2f56825
%files fish-completion
0f0e28f
%{_datadir}/fish/vendor_completions.d/docker.fish
2f56825
2f56825
%files nano
2f56825
%dir %{_datadir}/nano
2f56825
%{_datadir}/nano/Dockerfile.nanorc
2f56825
2f56825
%changelog
abbda29
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org>
abbda29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
abbda29
d885c69
* Tue Jul 19 2022 Maxwell G <gotmax@e.email> - 20.10.17-5
d885c69
- Rebuild for CVE-2022-{1705,32148,30631,30633,28131,30635,30632,30630,1962} in
d885c69
  golang
d885c69
3d23934
* Mon Jul 04 2022 Maxwell G <gotmax@e.email> - 20.10.17-4
3d23934
- Only build on %%golang_arches (i.e. where golang is available).
3d23934
00bcc2f
* Sun Jun 19 2022 Maxwell G <gotmax@e.email> - 20.10.17-3
00bcc2f
- Rebuilt for CVE-2022-1996, CVE-2022-24675, CVE-2022-28327, CVE-2022-27191,
00bcc2f
  CVE-2022-29526, CVE-2022-30629.
00bcc2f
b88bf1e
* Sat Jun 11 2022 Maxwell G <gotmax@e.email> - 20.10.17-2
b88bf1e
- Rebuild for new golang-github-docker-libnetwork
b88bf1e
9248a6d
* Fri Jun 10 2022 Maxwell G <gotmax@e.email> - 20.10.17-1
9248a6d
- Update to 20.10.17. Fixes rhbz#2095714.
9248a6d
aec27ef
* Fri May 13 2022 Maxwell G <gotmax@e.email> - 20.10.16-1
aec27ef
- Update to 20.10.16.
aec27ef
c088e16
* Sat May 07 2022 Maxwell G <gotmax@e.email> - 20.10.15-1
c088e16
- Update to 20.10.15 (rhbz#2082501).
c088e16
- Fix BUILDTAGS (rhbz#2082924).
c088e16
- Make non-binary subpackages noarch.
c088e16
5a5cf68
* Mon Apr 11 2022 Maxwell G <gotmax@e.email> - 20.10.14-1
5a5cf68
- Update to 20.10.14. Fixes rhbz#2063052.
5a5cf68
- Mitigate CVE-2022-24769.
5a5cf68
3596b9c
* Mon Jan 31 2022 Maxwell G <gotmax@e.email> - 20.10.12-3
3596b9c
- Fixes FTBFS. Closes rhbz#2046748.
3596b9c
- Use %%gobuild instead of Makefile to build binaries
3596b9c
- Add explanatory comments.
3596b9c
- Normalize install commands
3596b9c
- Make compliant with SourceURL Guidelines
3596b9c
- Remove no longer necessary `ExcludeArch: ppc64`.
3596b9c
e33b768
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 20.10.12-2
e33b768
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
e33b768
098d8c1
* Tue Jan 11 2022 Maxwell G <gotmax@e.email> - 20.10.12-1
098d8c1
- Update to 20.10.12. Fixes rhbz#2032534.
098d8c1
- Install zsh completions to the correct directory. Fixes rhbz#2038888.
098d8c1
89faf8b
* Mon Nov 22 2021 Olivier Lemasle <o.lemasle@gmail.com> - 20.10-11-1
89faf8b
- Update to upstream 20.10.11 (fixes rhbz#2024384)
89faf8b
- Mitigates CVE-2021-41190 (fixes rhbz#2024940)
89faf8b
2594e06
* Fri Oct 29 2021 Maxwell G <gotmax@e.email> - 20.10.10-1
2594e06
- Update to 20.10.10 (fixes rhbz#2015385)
2594e06
- Update virtual provides
2594e06
43e5a69
* Fri Oct 08 2021 Maxwell G <gotmax@e.email> - 20.10.9-1
43e5a69
- Update to 20.10.9 (fixes rhbz#2010508)
1bcb63b
- Patch seccomp policy to fix clone3() issue (fixes rhbz#2011523 and rhbz#1988199)
43e5a69
ec7f551
* Sun Aug 15 2021 Olivier Lemasle <o.lemasle@gmail.com> - 20.10.8-1
ec7f551
- Update to upstream 20.10.8 (fixes rhbz#1990148)
ec7f551
- Fix seccomp support (fixes rhbz#1986092)
ec7f551
8cf7eb1
* Sun Aug 15 2021 Dusty Mabe <dusty@dustymabe.com> - 20.10.7-3
8cf7eb1
- Remove `Requires(post)` on firewalld-filesystem.
8cf7eb1
a3f1c82
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.10.7-2
a3f1c82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
a3f1c82
6d566dc
* Fri Jul 16 2021 Olivier Lemasle <o.lemasle@gmail.com> - 20.10.7-1
6d566dc
- Update to upstream 20.10.7 (fixes rhbz#1967390)
6d566dc
77b5b20
* Tue May 04 2021 Olivier Lemasle <o.lemasle@gmail.com> - 20.10.6-2
77b5b20
- Add conflict with podman-docker
77b5b20
7fce04d
* Tue Apr 20 2021 Olivier Lemasle <o.lemasle@gmail.com> - 20.10.6-1
7fce04d
- Update to upstream 20.10.6 (#1948605)
7fce04d
- Re-bundle moby dependencies to fix gRPC issues with Swarm
7fce04d
  (https://github.com/coreos/fedora-coreos-tracker/issues/793)
7fce04d
37290cc
* Sun Mar 14 2021 Olivier Lemasle <o.lemasle@gmail.com> - 20.10.5-1
37290cc
- Update to latest upstream 20.10.5 - fixes #1903426
37290cc
- Upstream brings compatibility with cgroups v2 - fixes #1746355
37290cc
- Remove package moby-engine-vim (dockerfile.vim has been merged in upstream vim)
37290cc
- Remove firewalld docker zone, since dockerd can now communicate with firewalld - fixes #1852680
37290cc
- Build dockerd and docker-proxy from unbundled source packages
7b349c2
- Remove fixed storage-driver (cf. https://src.fedoraproject.org/rpms/moby-engine/pull-request/6)
37290cc
f84e280
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 19.03.13-3.ce.git4484c46
f84e280
- Rebuilt for updated systemd-rpm-macros
f84e280
  See https://pagure.io/fesco/issue/2583.
f84e280
92391fb
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 19.03.13-2.ce.git4484c46
92391fb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
92391fb
41674ad
* Fri Oct 02 2020 Olivier Lemasle <o.lemasle@gmail.com> - 19.03.13-1.ce.git4484c46
41674ad
- Update to upstream 19.03.13 (#1837641)
41674ad
62dc2fd
* Fri Oct 02 2020 Olivier Lemasle <o.lemasle@gmail.com> - 19.03.11-4.ce.git42e35e6
62dc2fd
- Fix FTBFS: adapt to change to CMake builds (#1864160)
62dc2fd
08e0065
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.03.11-3.ce.git42e35e6
08e0065
- Second attempt - Rebuilt for
08e0065
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
08e0065
0910c32
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.03.11-2.ce.git42e35e6
0910c32
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
0910c32
7182e8c
* Sun Jun 07 2020 Olivier Lemasle <o.lemasle@gmail.com> - 19.03.11-1.ce.git42e35e6
7182e8c
- Update to upstream 19.03.11 to prevent CVE-2020-13401
7182e8c
2d33533
* Thu May 07 2020 Olivier Lemasle <o.lemasle@gmail.com> - 19.03.8-2.ce.gitafacb8b
2d33533
- Configure storage-driver explicitely (fixes #1832301)
8a8c5cd
- Add firewalld zone: trust interface docker0, as firewalld now uses nftables
8a8c5cd
  by default and docker communicates with iptables (fixes #1817022)
2d33533
f190099
* Mon Mar 16 2020 Olivier Lemasle <o.lemasle@gmail.com> - 19.03.8-1.ce.gitafacb8b
f190099
- Update to latest upstream release - Docker CE 19.03.8
f190099
- Prune unused BuildRequires
f190099
c52ac6b
* Sun Mar 8 2020 Olivier Lemasle <o.lemasle@gmail.com> - 19.03.7-2.ce.git7141c19
c52ac6b
- Add Conflicts with docker-ce-cli and Obsoletes docker-common
c52ac6b
3579c21
* Sat Mar 7 2020 Olivier Lemasle <o.lemasle@gmail.com> - 19.03.7-1.ce.git7141c19
3579c21
- Update to latest upstream release - Docker CE 19.03.7
3579c21
- Add Epoch: 2 to Obsoletes for docker and docker-latest
3579c21
5dd94a4
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 18.09.8-3.ce.git0dd43dd
5dd94a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
5dd94a4
9a6358d
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.09.8-2.ce.git0dd43dd
9a6358d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
9a6358d
be1ef80
* Thu Jul 18 2019 Olivier Lemasle <o.lemasle@gmail.com> - 18.09.8-1.ce.git0dd43dd
be1ef80
- Update to latest upstream release - Docker CE 18.09.8
be1ef80
b730400
* Sat Jul 13 2019 Olivier Lemasle <o.lemasle@gmail.com> - 18.09.7-5.ce.git2d0083d
b730400
- Move docker-init and docker-proxy to /usr/libexec/docker
b730400
- Update moby-engine-nano summary to follow guidelines
b730400
b730400
* Sat Jul 13 2019 Olivier Lemasle <o.lemasle@gmail.com> - 18.09.7-4.ce.git2d0083d
a6ffb49
- Add nofile ulimit to default docker daemon options (#1715254, #1708115)
a6ffb49
b730400
* Fri Jul 12 2019 Olivier Lemasle <o.lemasle@gmail.com> - 18.09.7-3.ce.git2d0083d
a6ffb49
- rebuilt
a6ffb49
b27960a
* Fri Jul 12 2019 Olivier Lemasle <o.lemasle@gmail.com> - 18.09.7-2.ce.git2d0083d
b27960a
- Depend on packaged versions "runc" and "containerd" instead of building them.
b27960a
e47c540
* Thu Jun 27 2019 David Michael <dm0@redhat.com> - 18.09.7-1.ce.git2d0083d
e47c540
- Update docker-ce to commit 2d0083d (version 18.09.7).
e47c540
- Update runc to commit 425e105.
e47c540
- Update containerd to commit 894b81a (1.2.6).
e47c540
- Update docker-proxy to commit e7933d4.
e47c540
624d8fe
* Tue May 14 2019 David Michael <dm0@redhat.com> - 18.09.6-1.ce.git481bc77
624d8fe
- Update docker-ce to commit 481bc77 (version 18.09.6).
624d8fe
- Update docker-proxy to commit 872f0a8.
d24afc5
- Obsolete and provide the docker and docker-latest packages. (#1700006)
624d8fe
06a6728
* Thu Apr 11 2019 David Michael <dm0@redhat.com> - 18.09.5-1.ce.gite8ff056
06a6728
- Update docker-ce to commit e8ff056 (version 18.09.5).
06a6728
- Update docker-runc to commit 2b18fe1.
06a6728
- Update docker-containerd to commit bb71b10 (version 1.2.5).
06a6728
- Update docker-proxy to commit 4725f21.
06a6728
- Report the correct engine version.
06a6728
- Install symlinks to unprefixed runc/containerd program names.
06a6728
01525ef
* Thu Mar 28 2019 David Michael <dm0@redhat.com> - 18.06.3-2.ce.gitd7080c1
01525ef
- Conflict with docker-common. (#1693397)
01525ef
36c67c1
* Thu Feb 21 2019 David Michael <dm0@redhat.com> - 18.06.3-1.ce.gitd7080c1
36c67c1
- Update docker-ce to commit d7080c1 (version 18.06.3).
36c67c1
31fce51
* Tue Feb 12 2019 David Michael <dm0@redhat.com> - 18.06.2-1.ce.git6d37f41
31fce51
- Update docker-ce to commit 6d37f41 (version 18.06.2).
31fce51
- Update docker-runc to commit a592beb.
31fce51
c1ebadd
* Mon Feb 11 2019 David Michael <dm0@redhat.com> - 18.06.1-3.ce.gite68fc7a
c1ebadd
- Apply a runc patch for CVE-2019-5736.
c1ebadd
3812025
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.06.1-2.ce.gite68fc7a
3812025
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
3812025
a3ed866
* Thu Nov 29 2018 David Michael <dm0@redhat.com> - 18.06.1-1.ce.gite68fc7a
a3ed866
- Update docker-ce to commit e68fc7a (version 18.06.1).
a3ed866
- Update docker-runc to commit 69663f0.
a3ed866
- Update docker-containerd to commit 468a545 (version 1.1.2).
a3ed866
- Update docker-proxy to commit 3ac297b.
ff93210
- Backport a fix for mounting named volumes.
41eeacf
- Create a "docker" group for non-root Docker access.
41eeacf
- Support systemd socket-activation.
3b30c6b
- Make runc and containerd commit IDs match their expected values.
3b30c6b
- Preserve containerd debuginfo.
a3ed866
3a2fa17
* Mon Nov 12 2018 Marcin Skarbek <rpm@skarbek.name> - 18.06.0-2.ce.git0ffa825
3a2fa17
- add configuration file
3a2fa17
- update service file
3a2fa17
2f56825
* Sat Aug 18 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 18.06.0-1.ce.git0ffa825
2f56825
- Resolves: #1539161 - first upload to Fedora
2f56825
- built docker-ce commit 0ffa825
2f56825
- built docker-runc commit ad0f5255
2f56825
- built docker-containerd commit a88b631
2f56825
- built docker-proxy commit a79d368
2f56825
- built docker-init commit fec3683
2f56825
2f56825
* Tue Mar 20 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 17.03.2-4.ce.gitf5ec1e2
2f56825
- correct some rpmlint errors
2f56825
2f56825
* Wed Feb 21 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 17.03.2-3.ce
2f56825
- docker-* symlinks to moby-* (RE: gh PR 34226)
2f56825
2f56825
* Wed Feb 21 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 17.03.2-2.ce
2f56825
- rename binaries as per upstream gh PR 34226
2f56825
2f56825
* Fri Jan 26 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 17.03.2-1
2f56825
- initial build
2f56825
- built moby commit f5ec1e2
2f56825
- built cli commit 4b61f56
2f56825
- built docker-runc commit 2d41c047
2f56825
- built docker-containerd commit 3addd84
2f56825
- built docker-proxy commit 7b2b1fe