%define _trivial .0 %define _buildid .6 # Globals are used to derive release details for Moby as it # exists in its composite release repository at: # # https://github.com/moby/moby # # When updating this spec to package a new release, it's likely only # these bits will need updating: # # Moby release version, eg: 18.09.6-ce %global moby_version 25.0.8 # Moby repository commit for above version, eg: <40 char sha> %global moby_commit 71907ca48ef98bc6640795e50dcf257d683af53b # Moby targets a specific golang compiler, eg: 1.10.8 # # NOTE: this must match exactly with upstream as Docker is sensitive and closely # tied to stdlib/runtime and its bugs/features of a given version. # hint: github.com/moby/moby/blob/master/Dockerfile %global moby_target_golang 1.24.5 # hint: https://github.com/moby/moby/blob/master/hack/dockerfile/install/tini.installer %global moby_tini_commit de40ad007797e0dcd8b7126f27bb87401d224240 # We package the version of docker-cli that corresponds to the version of moby (the engine) # Refer to: https://github.com/docker/cli/tags # Note this is NOT the same as the version specified in # https://github.com/moby/moby/blob/master/hack/dockerfile/install/dockercli.installer # which is quite out-of-date. %global docker_cli_version 25.0.7 # Purposely going out of sync with the CLI commit here so that the docker --version command does # not alarm users. Most of the time this should be equal %{docker_cli_version} %global docker_cli_version_command_output 25.0.8 %global docker_cli_commit 0bab007417226f0c43a897216c4e40471b9d70d1 # buildx is a Docker CLI plugin for extended build capabilities # hint: https://github.com/docker/buildx %global buildx_version 0.12.1 %global buildx_commit 30feaa1a915b869ebc2eea6328624b49facd4bfb # container restart policies require a version of libcgroup that supports the pids root %global libcgroup_min_version 0.40.rc1-5.15 ### bconds # Default with systemd on AL2 %if 0%{?amzn} < 2 %bcond_with systemd # without %global _rundir %{_localstatedir}/run %else %bcond_without systemd # with %endif # By default, include testing with some cases modified or removed for # build time limitations. %bcond_without tests # with # Enable docker's seccomp integrations. %bcond_without seccomp # with # Assert that commits for docker's bundled projects match the # committed Git SHAs. %bcond_without strict_components # with %bcond_with btrfs %bcond_with aufs ### Golang helper macros # Emit GOPATH settings inline. %define golang_set_gopath(d:) \ export GOPATH="%{-d:%{-d*}}%{!-d:$(pwd -P)}"; \ export PATH="$PATH:$GOPATH/bin" \ export GO111MODULE=off # Initialize a GOPATH for building golang packages. %define golang_init_gopath(d:) \ %{golang_set_gopath} \ rm -rf "${GOPATH}/"{src,bin} \ install -d "${GOPATH}"/{src,pkg,bin} # The ${GOPATH:-.} allows for use in the files section when $PWD is at # the $GOPATH root. %define golang_src_path(p:) ${GOPATH:-.}/src/%{-p*} # Unpack a Source at conventional golang package path in $GOPATH - its # import path. %define golang_prep(p:s:S:) \ install -d "$GOPATH/src/%{-p*}" && \ tar -x %{-S:--strip-components=%{-S*}} -C "%{golang_src_path -p %{-p*}}" -f %{-s*} ### Docker derived data # Component package collects the release sources for the daemon and # the cli. %global docker_component_package github.com/moby/moby %global docker_component_src %{golang_src_path -p %docker_component_package} %global docker_component_commit %moby_commit # The componentized github.com/docker/docker %global docker_package github.com/docker/docker %global docker_src %{golang_src_path -p %docker_package} %global docker_version %moby_version %global docker_rpm_version %(sed 's/-//' <<< %docker_version) %global docker_commit %docker_component_commit %global docker_shortcommit %(c=%{docker_commit}; echo ${c:0:7}) # The componentized github.com/docker/cli package %global docker_cli_package github.com/docker/cli %global docker_cli_src %{golang_src_path -p %docker_cli_package} %global docker_cli_shortcommit %(c=%{docker_cli_commit}; echo ${c:0:7}) # The componentized github.com/docker/buildx package %global buildx_package github.com/docker/buildx %global buildx_src %{golang_src_path -p %buildx_package} %global buildx_shortcommit %(c=%{buildx_commit}; echo ${c:0:7}) # Add buildtags appropriate for the package's build configuration. %global build_tags %{?build_tags} selinux %if %{with seccomp} %global build_tags %{?build_tags} seccomp %endif %if %{without btrfs} %global build_tags %{?build_tags} exclude_graphdriver_btrfs %endif %if %{without aufs} %global build_tags %{?build_tags} exclude_graphdriver_aufs %endif %global apprundir %{_rundir}/docker %global appconfdir %{_sysconfdir}/docker ### Components' derived data # The commit SHAs for external, however bundled, components are # defined in the installers for each (see the vars _COMMIT for # the SHAs). %global docker_component_tree_url https://github.com/moby/moby/tree/%{docker_commit}/hack/dockerfile/install/ # tini provides the "docker-init" binary %global tini_package github.com/krallin/tini %global tini_src %{golang_src_path -p %tini_package} %global tini_version 0.19.0 %global tini_commit %moby_tini_commit %global tini_shortcommit %(c=%{tini_commit}; echo ${c:0:7}) # allow docker-proxy to not have a build id # TODO: get docker-proxy to take dockerd's build id %undefine _missing_build_ids_terminate_build Name: docker Version: %{docker_rpm_version} Release: 1%{?dist}%{?_trivial}%{?_buildid} Summary: Automates deployment of containerized applications License: ASL 2.0 and MIT and BSD and MPLv2.0 and WTFPL URL: http://www.docker.com # Disable ix86 builds: https://github.com/docker/docker/issues/136 ExcludeArch: %{ix86} Source0: https://%{docker_component_package}/archive/%{docker_commit}/docker-v%{docker_version}.tar.gz Source2: docker.sysconfig Source3: docker-storage.sysconfig Source7: https://%{tini_package}/archive/%{tini_commit}/tini-v%{tini_version}.tar.gz Source9: https://%{docker_cli_package}/archive/%{docker_cli_commit}/docker-cli-v%{docker_cli_version}.tar.gz Source10: https://%{buildx_package}/archive/refs/tags/buildx-v%{buildx_version}.tar.gz # Amazon-provided sources # Scripts and other resources to support /etc/docker-runtimes.d Source1001: docker-setup-runtimes.sh Source1002: README-docker-runtimes.d # disable tests that do not function in amibuild environment Patch240503: docker-24.0.5-systemd-unit-sysconfig.patch Patch240504: docker-24.0.5-sysvinit-sysconfig.patch # The patch file is generated by manually upgrading oauth2 and crypto dependencies and running `go mod vendor`. # Also the patch is slightly modified to not change any *.der binary # files, because of errors with patching binary files. # # Remove patch after the following deps upgrade upstream: # golang.org/x/oauth2 >= v0.27.0 and golang.org/x/crypto >= v0.36.0 Patch250801: docker-25.0.8-update-oauth2-and-crypto-deps.patch Patch2125: tini-allow-git-sha-override.patch # Generated after upstream PR merge and then running: # git format-patch -1 ebbb4cad635187e004e8eac99cfa001950fca703 # # Remove after a new version (v25.0.9) is released. Patch0004: 0004-vendor-github.com-golang-jwt-jwt-v4-v4.5.2.patch # Generated after applying upstream patch from GHSA-265r-hfxg-fhmg: # https://github.com/containerd/containerd/commit/05044ec0a9a75232cad458027ca83437aae3f4da # git format-patch -n HEAD^ Patch0005: 0005-vendor-apply-patch-for-CVE-2024-40635.patch BuildRequires: gcc >= 7.2 BuildRequires: glibc-static BuildRequires: golang >= %{moby_target_golang} BuildRequires: device-mapper-devel %if %{with btrfs} BuildRequires: btrfs-progs-devel >= 3.14.2 %endif BuildRequires: cmake BuildRequires: git BuildRequires: libtool-ltdl-devel BuildRequires: libselinux-devel BuildRequires: libudev-devel # Required for testing the pigz archive functionality in docker. BuildRequires: pigz # Required for memfd runc protection. BuildRequires: kernel-headers >= 3.17 BuildRequires: go-rpm-macros BuildRequires: go-md2man %if %{with systemd} BuildRequires: pkgconfig(systemd) BuildRequires: systemd-units %endif %if %{with seccomp} BuildRequires: libseccomp-static %endif Provides: docker-io = %{version} Provides: lxc-docker = %{version} Provides: moby = %{version} Obsoletes: docker-devel < 17 Obsoletes: docker-pkg-devel < 17 # need xz to work with ubuntu images # https://bugzilla.redhat.com/show_bug.cgi?id=1045220 Requires: xz # https://bugzilla.redhat.com/show_bug.cgi?id=1034919 Requires: libcgroup >= %{libcgroup_min_version} Requires: iptables Requires: device-mapper-libs >= 1.02.90-2.24 Requires: pigz # Used by the sysvinit script for mountpoint namespacing %if 0%{?amzn} < 2 Requires: /usr/bin/unshare %endif # Container restart policies require the pids cgroup controller, # which was implemented in the kernel starting with version 4.3 # Amazon Linux 2 is a minimum of 4.14 (4.9 in prereleases) %if 0%{?amzn} < 2 Requires: kernel >= 4.3 %endif # In Docker 1.9.1, the default filesystem for devmapper changed from # ext4 to xfs Requires: xfsprogs # docker-runc and docker-containerd are now satisfied with discrete # packages for each. These packages remain necessary at a foundational # level. Requires: runc >= 1.0.0 Requires: containerd >= 1.3.2 Requires: container-selinux # Older versions of ec2-net-utils call ec2net.hotplug for veth # interfaces, which causes performance issues when quickly creating or # deleting lots of containers Conflicts: ec2-net-utils < 0.4-1.24 # ecs-init versions 1.85.x and 1.86.0 are identified with an issue where # the ecs-init service does not restart as expected after docker restart/update. # The issue is fixed with ecs-init-1.86.1. Conflicts: ecs-init < 1.86.1 %description Docker is an open-source engine that automates the deployment of any application as a lightweight, portable, self-sufficient container that will run virtually anywhere. Docker containers can encapsulate any payload, and will run consistently on and between virtually any server. The same container that a developer builds and tests on a laptop will run at scale, in production*, on VMs, bare-metal servers, OpenStack clusters, public instances, or combinations of the above. %prep %setup -T -c -q -n %{name}-%{version}-%{release} # Setup a GOPATH appropriate for building components merged in the # github.com/moby/moby repository. # # This avoids gymnastics to prepare many GOPATHs for each, effectively # misnamed, improper import paths. %golang_init_gopath %golang_prep -p %docker_component_package -S 1 -s %{SOURCE0} # tini isn't golang, but we arrange it like it is for navigation. %golang_prep -p %tini_package -S 1 -s %{SOURCE7} %golang_prep -p %docker_cli_package -S 1 -s %{SOURCE9} %golang_prep -p %buildx_package -S 1 -s %{SOURCE10} %if %{with systemd} cp %{SOURCE1002} . %endif # Apply moby patches cd %{docker_component_src} %patch240503 -p1 %patch240504 -p1 %patch250801 -p1 %patch0004 -p1 %patch0005 -p1 # Apply tini patches cd %{tini_src} %patch2125 -p2 # Apply cli patches cd %{docker_cli_src} # Now put the things back where they came from. The import paths are # much happier this way and it correctly represents the collected # software (in golang land). install -d $(readlink -m %{docker_cli_src}/../) $(readlink -m %{docker_src}/../) mv %{docker_component_src} %{docker_src} %build %golang_set_gopath # Ensure we're using a later gcc on earlier platforms. %if 0%{?amzn} < 2 export CC=gcc72 %endif # Build the cli ( cd %{docker_cli_src} export VERSION=%{docker_cli_version_command_output} export GITCOMMIT=%{docker_cli_shortcommit} env GO_LINKMODE="dynamic" ./scripts/build/binary ) #Build the buildx plugin cd %{buildx_src} LDFLAGS="-X github.com/docker/buildx/version.Version=%{buildx_version} -X github.com/docker/buildx/version.Revision=%{buildx_commit} -X github.com/docker/buildx/version.Package=github.com/docker/buildx" %gobuild -o "bin/buildx" ./cmd/buildx # Build the simple init process for container pid 1, tini - it takes # care of forwarding signals and child process management. ( cd %{tini_src} export GIT_COMMIT_OVERRIDE=%{tini_shortcommit} cmake . make ) # Build the docker daemon ( cd %{docker_src} export DOCKER_GITCOMMIT="%{docker_shortcommit}" export DOCKER_BUILDTAGS="%{?build_tags}" export VERSION="%{docker_version}" hack/make.sh dynbinary dynbinary-proxy ) %install %golang_set_gopath rm -rf %{buildroot} # install docker cli install -d %{buildroot}%{_bindir} install -d %{buildroot}%{_localstatedir}/lib/docker install -p -m 755 %{docker_cli_src}/build/docker %{buildroot}%{_bindir}/docker # install compatibility symlinks for binaries that moved when runc # and containerd were split into separate packages ln -sf ../sbin/runc %{buildroot}%{_bindir}/docker-runc ln -sf containerd %{buildroot}%{_bindir}/docker-containerd ln -sf ctr %{buildroot}%{_bindir}/docker-ctr # install docker cli manpages install -d %{buildroot}%{_mandir}/man1 install -p -m 644 %{docker_cli_src}/man/man1/docker*.1 %{buildroot}%{_mandir}/man1 install -d %{buildroot}%{_mandir}/man5 install -p -m 644 %{docker_cli_src}/man/man5/Dockerfile.5 %{buildroot}%{_mandir}/man5 install -d %{buildroot}%{_mandir}/man8 install -p -m 644 %{docker_cli_src}/man/man8/docker*.8 %{buildroot}%{_mandir}/man8 # install docker cli bash completion install -d %{buildroot}%{_datadir}/bash-completion install -p -m 644 %{docker_cli_src}/contrib/completion/bash/docker %{buildroot}%{_datadir}/bash-completion # install buildx plugin install -d %{buildroot}%{_libexecdir}/%{name}/cli-plugins install -p -m 755 %{buildx_src}/bin/buildx %{buildroot}%{_libexecdir}/%{name}/cli-plugins/docker-buildx # install docker daemon install -p -m 755 %{docker_src}/bundles/dynbinary-daemon/dockerd %{buildroot}%{_bindir}/dockerd # install docker-proxy for userspace network proxying install -p -m 755 %{docker_src}/bundles/dynbinary-proxy/docker-proxy %{buildroot}%{_bindir}/docker-proxy # install tini as docker-init which is used by default install -p -m 755 %{tini_src}/tini-static %{buildroot}%{_bindir}/docker-init # install udev rules install -d %{buildroot}%{_sysconfdir}/udev/rules.d install -p %{docker_src}/contrib/udev/80-docker.rules %{buildroot}%{_sysconfdir}/udev/rules.d # install daemon storage dir install -d %{buildroot}%{_sharedstatedir}/docker # install docker daemon configuration dir (eg: /etc/docker) install -d %{buildroot}%{appconfdir} # install daemon run dir %if %{without systemd} install -d %{buildroot}%{apprundir} %else # systemd manages this rundir itself %endif # install init system service %if %{with systemd} # install systemd unitfile install -d %{buildroot}%{_unitdir} install -p -m 644 %{docker_src}/contrib/init/systemd/docker.{service,socket} %{buildroot}%{_unitdir} # install runtimes dir and script install -d %{buildroot}%{_sysconfdir}/docker-runtimes.d install -d %{buildroot}%{_libexecdir}/%{name} install -p -m 755 %{SOURCE1001} %{buildroot}%{_libexecdir}/%{name} %else # install sysvinit script install -d %{buildroot}%{_initddir} install -p -m 755 %{docker_src}/contrib/init/sysvinit-redhat/docker %{buildroot}%{_initddir} %endif # Install sysconfig defaults (used by systemd unit and sysvinit script). install -d %{buildroot}%{_sysconfdir}/sysconfig/ install -p -m 644 %{SOURCE2} %{buildroot}%{_sysconfdir}/sysconfig/docker install -p -m 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/sysconfig/docker-storage %clean rm -rf %{buildroot} %check # We expect to see a common pattern for the docker cli and daemon. echo "INFO: Checking versions reported by executables" # For docker (cli): # # Example: Docker version 18.09.5, build e8ff056 cli_reported_version="$(%{docker_cli_src}/build/docker -v)" cli_expected_version="Docker version %{docker_cli_version_command_output}, build %{docker_cli_shortcommit}" echo -e "INFO: docker -v\t$cli_reported_version" if [[ "$cli_reported_version" != "$cli_expected_version" ]]; then echo "ERROR: expected 'docker -v' to report '$cli_expected_version'" exit 1 fi # For dockerd (daemon): # # Example: Docker version 18.09.5, build e8ff056 daemon_reported_version="$(%{docker_src}/bundles/dynbinary-daemon/dockerd -v)" daemon_expected_version="Docker version %{docker_version}, build %{docker_shortcommit}" echo -e "INFO: dockerd -v\t$daemon_reported_version" if [[ "$daemon_reported_version" != "$daemon_expected_version" ]]; then echo "ERROR: expected 'dockerd -v' to report '$daemon_expected_version'" exit 1 fi %if %{with strict_components} print_url() { # Print link to the upstream's posted component installers. echo "INFO: See %{docker_component_tree_url} for appropriate SHAs" } strict_level="ERROR" on_strict_failure="print_url; exit 1" %else strict_level="WARN" on_strict_failure="" %endif # Check the components used to ensure they're the matching commits as # is committed in the upstream package. # libnetwork (docker-proxy) ( proxy_reported_version="$(%{docker_src}/bundles/dynbinary-proxy/docker-proxy -v)" proxy_expected_version="docker-proxy (commit %{docker_shortcommit}) version %{docker_version}" echo -e "INFO: docker-proxy -v\t$proxy_reported_version" if [[ "$proxy_reported_version" != "$proxy_expected_version" ]]; then echo "ERROR: expected 'docker-proxy -v' to report '$proxy_expected_version'" exit 1 fi ) # tini (docker-init) ( tini_reported_version="$(%{tini_src}/tini --version)" tini_expected_version="tini version %{tini_version} - git.%{tini_shortcommit}" echo -e "INFO: tini --version\t$tini_reported_version" if [[ "$tini_reported_version" != "$tini_expected_version" ]]; then echo "ERROR: expected 'tini --version' to report '$tini_expected_version'" exit 1 fi ) unset strict_level on_strict_failure %pre # Create the docker group for owning docker socket. getent group docker > /dev/null || %{_sbindir}/groupadd -r docker exit 0 %post %if %{with systemd} %systemd_post docker.service docker.socket %else if [ "$1" -eq "1" ]; then # install but don't activate /sbin/chkconfig --add docker elif [ "$1" -eq "2" ]; then # If upgrading, reset the init priorities, to ensure that # the daemon always stops before networking goes down # during shutdown and reboot. /sbin/chkconfig docker resetpriorities || : fi %endif %preun %if %{with systemd} %systemd_preun docker.service docker.socket %else if [ "$1" -eq "0" ]; then /sbin/service docker stop >/dev/null 2>&1 || : /sbin/chkconfig --del docker fi %endif %postun %if %{with systemd} %systemd_postun_with_restart docker.service %else if [ "$1" -ge "1" ] ; then /sbin/service docker condrestart >/dev/null 2>&1 ||: fi %endif %if 0%{?amzn} == 2 %triggerun -- docker < 18.03.1ce-3 # Some previous versions of docker in AL2 inadvertently included the SysV # initscript. Those versions do not have "systemctl daemon-reload" in %%postun, # so the upgrade path fails. systemctl daemon-reload >/dev/null 2>&1 || : if SYSTEMCTL_SKIP_REDIRECT="yes" /sbin/service docker status >/dev/null 2>&1; then SYSTEMCTL_SKIP_REDIRECT="yes" /sbin/service docker stop >/dev/null 2>&1 || : systemctl start docker >/dev/null 2>&1 || : fi # On a fresh install of container-selinux, or updating from selinux-policy in # amzn2-core to one that more closely tracks upstream, we need to relabel critical # files to pick up changes to file_contexts introduced by those packages. %define selinux_relabel_paths /usr/bin/docker* /var/lib/docker /etc/docker* /etc/sysconfig/docker* /run/docker /usr/libexec/docker /lib/systemd/system/docker* %define do_selinux_relabel() /usr/sbin/selinuxenabled && /usr/sbin/restorecon -r %* %triggerin -- container-selinux if [ $1 -eq 1 ]; then # new install, not update %{do_selinux_relabel} %{selinux_relabel_paths} ||: fi %triggerun -- selinux-policy < 3.13.1-266 if [ $1 -eq 1 ]; then # update, not uninstall %{do_selinux_relabel} %{selinux_relabel_paths} ||: fi %endif %triggerun -- libcgroup < %{libcgroup_min_version} if [ $1 -eq 1 ]; then # update, not uninstall # Make sure the pids cgroup root exists /sbin/service cgconfig condrestart ||: fi %if 0%{?amzn} == 1 %triggerun -- docker < 1.6.0-1.5 # Previous versions of docker 1.5 and 1.6 generated an invalid key.json, # due to a bug in libtrust. Now that the bug has been fixed, the daemon # itself detects the invalid key, and will refuse to start unless it is # renamed or removed. # A new key will be generated when the daemon is next started. # Docker 1.4 and older don't generate this key at all. keyfile="/etc/docker/key.json" [ -e "${keyfile}" ] && mv -f "${keyfile}"{,.rpmsave} >/dev/null 2>&1 || : %endif %files %doc src/github.com/docker/docker/AUTHORS %doc src/github.com/docker/docker/LICENSE %doc src/github.com/docker/docker/MAINTAINERS %doc src/github.com/docker/docker/NOTICE # appears to no longer be a thing, or be htere? # %doc src/github.com/docker/docker/CHANGELOG.md %doc src/github.com/docker/docker/README.md %doc src/github.com/docker/docker/CONTRIBUTING.md %{_mandir}/man1/docker-attach.1* %{_mandir}/man1/docker-build.1* %{_mandir}/man1/docker-builder-build.1* %{_mandir}/man1/docker-builder-prune.1* %{_mandir}/man1/docker-builder.1* %{_mandir}/man1/docker-checkpoint-create.1* %{_mandir}/man1/docker-checkpoint-ls.1* %{_mandir}/man1/docker-checkpoint-rm.1* %{_mandir}/man1/docker-checkpoint.1* %{_mandir}/man1/docker-commit.1* %{_mandir}/man1/docker-config-create.1* %{_mandir}/man1/docker-config-inspect.1* %{_mandir}/man1/docker-config-ls.1* %{_mandir}/man1/docker-config-rm.1* %{_mandir}/man1/docker-config.1* %{_mandir}/man1/docker-container-attach.1* %{_mandir}/man1/docker-container-commit.1* %{_mandir}/man1/docker-container-cp.1* %{_mandir}/man1/docker-container-create.1* %{_mandir}/man1/docker-container-diff.1* %{_mandir}/man1/docker-container-exec.1* %{_mandir}/man1/docker-container-export.1* %{_mandir}/man1/docker-container-inspect.1* %{_mandir}/man1/docker-container-kill.1* %{_mandir}/man1/docker-container-logs.1* %{_mandir}/man1/docker-container-ls.1* %{_mandir}/man1/docker-container-pause.1* %{_mandir}/man1/docker-container-port.1* %{_mandir}/man1/docker-container-prune.1* %{_mandir}/man1/docker-container-rename.1* %{_mandir}/man1/docker-container-restart.1* %{_mandir}/man1/docker-container-rm.1* %{_mandir}/man1/docker-container-run.1* %{_mandir}/man1/docker-container-start.1* %{_mandir}/man1/docker-container-stats.1* %{_mandir}/man1/docker-container-stop.1* %{_mandir}/man1/docker-container-top.1* %{_mandir}/man1/docker-container-unpause.1* %{_mandir}/man1/docker-container-update.1* %{_mandir}/man1/docker-container-wait.1* %{_mandir}/man1/docker-container.1* %{_mandir}/man1/docker-context-create.1* %{_mandir}/man1/docker-context-export.1* %{_mandir}/man1/docker-context-import.1* %{_mandir}/man1/docker-context-inspect.1* %{_mandir}/man1/docker-context-ls.1* %{_mandir}/man1/docker-context-rm.1* %{_mandir}/man1/docker-context-show.1* %{_mandir}/man1/docker-context-update.1* %{_mandir}/man1/docker-context-use.1* %{_mandir}/man1/docker-context.1* %{_mandir}/man1/docker-cp.1* %{_mandir}/man1/docker-create.1* %{_mandir}/man1/docker-diff.1* %{_mandir}/man1/docker-events.1* %{_mandir}/man1/docker-exec.1* %{_mandir}/man1/docker-export.1* %{_mandir}/man1/docker-history.1* %{_mandir}/man1/docker-image-build.1* %{_mandir}/man1/docker-image-history.1* %{_mandir}/man1/docker-image-import.1* %{_mandir}/man1/docker-image-inspect.1* %{_mandir}/man1/docker-image-load.1* %{_mandir}/man1/docker-image-ls.1* %{_mandir}/man1/docker-image-prune.1* %{_mandir}/man1/docker-image-pull.1* %{_mandir}/man1/docker-image-push.1* %{_mandir}/man1/docker-image-rm.1* %{_mandir}/man1/docker-image-save.1* %{_mandir}/man1/docker-image-tag.1* %{_mandir}/man1/docker-image.1* %{_mandir}/man1/docker-images.1* %{_mandir}/man1/docker-import.1* %{_mandir}/man1/docker-info.1* %{_mandir}/man1/docker-inspect.1* %{_mandir}/man1/docker-kill.1* %{_mandir}/man1/docker-load.1* %{_mandir}/man1/docker-login.1* %{_mandir}/man1/docker-logout.1* %{_mandir}/man1/docker-logs.1* %{_mandir}/man1/docker-manifest-annotate.1* %{_mandir}/man1/docker-manifest-create.1* %{_mandir}/man1/docker-manifest-inspect.1* %{_mandir}/man1/docker-manifest-push.1* %{_mandir}/man1/docker-manifest-rm.1* %{_mandir}/man1/docker-manifest.1* %{_mandir}/man1/docker-network-connect.1* %{_mandir}/man1/docker-network-create.1* %{_mandir}/man1/docker-network-disconnect.1* %{_mandir}/man1/docker-network-inspect.1* %{_mandir}/man1/docker-network-ls.1* %{_mandir}/man1/docker-network-prune.1* %{_mandir}/man1/docker-network-rm.1* %{_mandir}/man1/docker-network.1* %{_mandir}/man1/docker-node-demote.1* %{_mandir}/man1/docker-node-inspect.1* %{_mandir}/man1/docker-node-ls.1* %{_mandir}/man1/docker-node-promote.1* %{_mandir}/man1/docker-node-ps.1* %{_mandir}/man1/docker-node-rm.1* %{_mandir}/man1/docker-node-update.1* %{_mandir}/man1/docker-node.1* %{_mandir}/man1/docker-pause.1* %{_mandir}/man1/docker-plugin-create.1* %{_mandir}/man1/docker-plugin-disable.1* %{_mandir}/man1/docker-plugin-enable.1* %{_mandir}/man1/docker-plugin-inspect.1* %{_mandir}/man1/docker-plugin-install.1* %{_mandir}/man1/docker-plugin-ls.1* %{_mandir}/man1/docker-plugin-push.1* %{_mandir}/man1/docker-plugin-rm.1* %{_mandir}/man1/docker-plugin-set.1* %{_mandir}/man1/docker-plugin-upgrade.1* %{_mandir}/man1/docker-plugin.1* %{_mandir}/man1/docker-port.1* %{_mandir}/man1/docker-ps.1* %{_mandir}/man1/docker-pull.1* %{_mandir}/man1/docker-push.1* %{_mandir}/man1/docker-rename.1* %{_mandir}/man1/docker-restart.1* %{_mandir}/man1/docker-rm.1* %{_mandir}/man1/docker-rmi.1* %{_mandir}/man1/docker-run.1* %{_mandir}/man1/docker-save.1* %{_mandir}/man1/docker-search.1* %{_mandir}/man1/docker-secret-create.1* %{_mandir}/man1/docker-secret-inspect.1* %{_mandir}/man1/docker-secret-ls.1* %{_mandir}/man1/docker-secret-rm.1* %{_mandir}/man1/docker-secret.1* %{_mandir}/man1/docker-service-create.1* %{_mandir}/man1/docker-service-inspect.1* %{_mandir}/man1/docker-service-logs.1* %{_mandir}/man1/docker-service-ls.1* %{_mandir}/man1/docker-service-ps.1* %{_mandir}/man1/docker-service-rm.1* %{_mandir}/man1/docker-service-rollback.1* %{_mandir}/man1/docker-service-scale.1* %{_mandir}/man1/docker-service-update.1* %{_mandir}/man1/docker-service.1* %{_mandir}/man1/docker-stack-config.1* %{_mandir}/man1/docker-stack-deploy.1* %{_mandir}/man1/docker-stack-ls.1* %{_mandir}/man1/docker-stack-ps.1* %{_mandir}/man1/docker-stack-rm.1* %{_mandir}/man1/docker-stack-services.1* %{_mandir}/man1/docker-stack.1* %{_mandir}/man1/docker-start.1* %{_mandir}/man1/docker-stats.1* %{_mandir}/man1/docker-stop.1* %{_mandir}/man1/docker-swarm-ca.1* %{_mandir}/man1/docker-swarm-init.1* %{_mandir}/man1/docker-swarm-join-token.1* %{_mandir}/man1/docker-swarm-join.1* %{_mandir}/man1/docker-swarm-leave.1* %{_mandir}/man1/docker-swarm-unlock-key.1* %{_mandir}/man1/docker-swarm-unlock.1* %{_mandir}/man1/docker-swarm-update.1* %{_mandir}/man1/docker-swarm.1* %{_mandir}/man1/docker-system-df.1* %{_mandir}/man1/docker-system-events.1* %{_mandir}/man1/docker-system-info.1* %{_mandir}/man1/docker-system-prune.1* %{_mandir}/man1/docker-system.1* %{_mandir}/man1/docker-tag.1* %{_mandir}/man1/docker-top.1* %{_mandir}/man1/docker-trust-inspect.1* %{_mandir}/man1/docker-trust-key-generate.1* %{_mandir}/man1/docker-trust-key-load.1* %{_mandir}/man1/docker-trust-key.1* %{_mandir}/man1/docker-trust-revoke.1* %{_mandir}/man1/docker-trust-sign.1* %{_mandir}/man1/docker-trust-signer-add.1* %{_mandir}/man1/docker-trust-signer-remove.1* %{_mandir}/man1/docker-trust-signer.1* %{_mandir}/man1/docker-trust.1* %{_mandir}/man1/docker-unpause.1* %{_mandir}/man1/docker-update.1* %{_mandir}/man1/docker-version.1* %{_mandir}/man1/docker-volume-create.1* %{_mandir}/man1/docker-volume-inspect.1* %{_mandir}/man1/docker-volume-ls.1* %{_mandir}/man1/docker-volume-prune.1* %{_mandir}/man1/docker-volume-rm.1* %{_mandir}/man1/docker-volume-update.1* %{_mandir}/man1/docker-volume.1* %{_mandir}/man1/docker-wait.1* %{_mandir}/man1/docker.1* %{_mandir}/man5/Dockerfile.5* %{_mandir}/man8/dockerd.8* %config(noreplace) %{_sysconfdir}/sysconfig/docker %config(noreplace) %{_sysconfdir}/sysconfig/docker-storage %{_bindir}/docker %{_bindir}/dockerd %{_bindir}/docker-proxy %{_bindir}/docker-init %{_bindir}/docker-containerd %{_bindir}/docker-ctr %{_bindir}/docker-runc %dir %{_libexecdir}/%{name} %dir %{_libexecdir}/%{name}/cli-plugins %{_libexecdir}/%{name}/cli-plugins/docker-buildx %if %{with systemd} %{_unitdir}/docker.service %{_unitdir}/docker.socket %{_libexecdir}/%{name}/docker-setup-runtimes.sh %dir %{_sysconfdir}/docker-runtimes.d %doc README-docker-runtimes.d %else %{_initddir}/docker %endif %{_datadir}/bash-completion/docker %dir %{_sharedstatedir}/docker %if %{with systemd} %ghost %dir %{apprundir} %else %dir %{apprundir} %endif %dir %{appconfdir} %{_sysconfdir}/udev/rules.d/80-docker.rules %changelog * Thu Jul 31 2025 Justin Alvarez - 25.0.8-1.amzn2023.0.6 - Rebuild with golang 1.24.5 and remove broken docker-containerd-shim symlink * Wed Jun 18 2025 Justin Alvarez - 25.0.8-1.amzn2023.0.5 - Rebuild with golang 1.24.4 to fix CVE-2025-4673 and CVE-2025-22874 * Thu May 08 2025 Justin Alvarez - 25.0.8-1.amzn2023.0.4 - Patch containerd vendored dependency for CVE-2024-40635 * Fri Apr 11 2025 Justin Alvarez - 25.0.8-1.amzn2023.0.3 - Patch github.com/golang-jwt/jwt/v4 package for CVE-2025-30204 - Fix buildx cli version number not reporting correctly - Add container-selinux package as dependency * Mon Mar 24 2025 Swagat Bora - 25.0.8-1.amzn2023.0.2 - Patch golang.org/x/oauth2 package for CVE-2025-22868 - Patch golang.org/x/crypto package for CVE-2025-22869 * Wed Feb 05 2025 Justin Alvarez - 25.0.8-1.amzn2023.0.1 - Upgrade to 25.0.8 * Wed Dec 11 2024 Swagat Bora - 25.0.7-1.amzn2023.0.1 - Upgrade to 25.0.7 * Tue Nov 26 2024 Austin Vazquez - 25.0.6-1.amzn2023.0.3 - Update docker cli to 25.0.6 * Thu Aug 21 2024 Justin Alvarez - 25.0.6-1.amzn2023.0.2 - Update ecs-init "Conflicts" to match fixed version * Thu Jul 25 2024 Swagat Bora - 25.0.6-1.amzn2023.0.1 - Upgrade docker engine to 25.0.6 - Upgrade docker cli to 25.0.5 * Tue Jul 02 2024 Austin Vazquez - 25.0.3-1.amzn2023.0.2 - Remove docker.socket from systemd postun scriptlet to resolve data race on upgrade * Mon Feb 12 2024 Christopher R. Miller - 25.0.3-1.amzn2023.0.1 - Upgrade to 25.0.3 * Tue Nov 14 2023 Christopher R. Miller - 24.0.5-1.amzn2023.0.3 - Fix misspelling in systemd unit file * Fri Oct 13 2023 Antuan Weeks - 24.0.5-1.amzn2023.0.2 - rebuild with golang 1.20.10 for CVE-2023-39325 * Thu Aug 31 2023 Christopher R. Miller - 24.0.5-1.amzn2023.0.1 - Upgrade to 24.0.5 * Wed Jul 5 2023 Antuan Weeks - 20.10.25-1.amzn2023.0.1 - update to 20.10.25 from upstream to fix CVE-2022-41723 - update target golang to 1.19.9 - update docker cli to 20.10.25 - update patches due to deprecation of io/ioutil (e.g. https://github.com/docker/cli/commit/5c97f5c918bb58a9c03d2bc607ec85d77b008064) * Wed Apr 19 2023 Sai Harsha - 20.10.23-1.amzn2023.0.1 - Update to 20.10.23 from upstream - Update buildx to v0.10.4 and change the buildx plugin name to docker-buildx * Mon Mar 13 2023 Sonia Xu - 20.10.17-1.amzn2023.0.6 - Backport patch for CVE-2022-36109 * Fri Feb 17 2023 Kev Jayne - 20.10.17-1.amzn2023.0.5 - Skip outdated test: github.com/docker/docker/builder/remotecontext/git - Mass rebuild for AL2023 * Fri Feb 17 2023 Kev Jayne - 20.10.17-1 - Skip Test: github.com/docker/docker/builder/remotecontext/git * Mon Jun 20 2022 Sai Harsha - 20.10.17-1 - Update to 20.10.17 from upstream - Remove patches included from upstream - Add patch to skip test which require root access * Tue Mar 29 2022 Malcolm Inglis - 20.10.13-2 - Apply patch for CVE-2022-24769 * Tue Mar 29 2022 Malcolm Inglis - 20.10.13-1 - Update to 20.10.13 from upstream - Update golang BuildRequires to 1.16.15 per upstream - Remove patches included upstream since 20.10.10 * Fri Dec 10 2021 Paul Ezvan - 20.10.7-6 - Build for AL2022 * Wed Nov 17 2021 Jamie Anderson - 20.10.7-5 - CVE-2021-41190 - Conditionalize older trigger that only applies to ALAMI * Mon Sep 27 2021 Jamie Anderson - 20.10.7-3 - CVE-2021-41089 - CVE-2021-41091 - CVE-2021-41092 * Wed Aug 18 2021 Jamie Anderson - 20.10.7-2 - Update test-skip helpers to detect more types of buildroots * Mon Aug 16 2021 Jamie Anderson - 20.10.7-1 - Update to 20.10.7 from upstream - Update golang BuildRequires for CVE-2021-33196 - Increase default per-container file descriptor ulimit * Mon Aug 16 2021 Kinjal Thaker - 20.10.4-4 - Back-port Patch https://github.com/moby/moby/pull/42401 * Mon Aug 09 2021 Kinjal Thaker - 20.10.4-3 - Back-ported patches - https://github.com/moby/moby/pull/41586 - https://github.com/moby/moby/pull/41588 - https://github.com/moby/moby/pull/42418 - https://github.com/moby/moby/pull/42291 * Fri Jun 04 2021 Kinjal Thaker - 20.10.4-2 - Added buildx plugin for Docker CLI * Tue Mar 23 2021 Jamie Anderson - 20.10.4-1 - Update to 20.10.4 from upstream - Reorganize sources to use moby/moby and docker/cli instead of docker-ce * Wed Sep 23 2020 Jamie Anderson - 19.03.13ce-1 - Update to 19.03.13 from upstream - Add triggers to conditionally relabel on container-selinux install * Wed May 27 2020 Jacob Vallejo - 19.03.6ce-4 - CVE-2020-13401 * Fri Apr 24 2020 Jacob Vallejo - 19.03.6ce-3 - Require compatible ecs-init package * Thu Apr 16 2020 Jamie Anderson - 19.03.6ce-2 - awslogs: Update aws-sdk-go to support IMDSv2 * Wed Feb 26 2020 Jamie Anderson - 19.03.6ce-1 - Update to 19.03.6 from upstream * Mon Sep 23 2019 Jacob Vallejo - 18.09.9ce-1 - Update packaging for 18.09.9ce - Split container primitives into package dependencies (containerd, runc) * Thu Jun 06 2019 Jamie Anderson - 18.06.1ce-10 - CVE-2018-15664 * Wed Feb 27 2019 Jacob Vallejo - 18.06.1ce-8 - Backport AWS CloudWatch Logs endpoint flag support * Thu Jan 24 2019 iliana weller - 18.06.1ce-7 - CVE-2019-5736 * Thu Dec 13 2018 iliana weller - 18.06.1ce-6 - Add /etc/docker-runtimes.d (AL2 only) * Tue Dec 4 2018 Zac Mrowicki - 18.06.1ce-6 - Backport work around closing closed channel panic (https://github.com/moby/moby/pull/37780) * Mon Oct 22 2018 Jacob Vallejo - 18.06.1ce-5 - Create /etc/docker in packaging - Backport untar timing log improvements (https://github.com/moby/moby/pull/37983) - Backport awslogs error message improvements (https://github.com/moby/moby/pull/37944) - Backport awslogs utf8 normalization bugfix (https://github.com/moby/moby/pull/37986) * Tue Sep 25 2018 Justin Haynes - 18.06.1ce-4 - Actually create %%{_rundir}/docker during install * Tue Sep 18 2018 Justin Haynes - 18.06.1ce-3 - Create %%{_rundir}/docker during install * Thu Aug 23 2018 Jacob Vallejo - 18.06.1ce-1 - Update packaging and patches for Docker 18.06.1 - Add pigz for parallel gzip support * Wed Aug 15 2018 Frederick Lefebvre - 18.06.0ce-1 - Rename the spec file to docker.spec to match the package name * Fri Jul 27 2018 Zac Mrowicki - 18.06.0ce-1 - Update packaging and patches for Docker 18.06.0 * Tue Jul 17 2018 Zac Mrowicki - 18.03.1ce-5 - Backport AWS CloudWatch Logs endpoint flag support (https://github.com/moby/moby/pull/37374) * Fri Jun 22 2018 Jacob Vallejo - 18.03.1ce-4 - Re-enable sysconfig configuration in systemd unit * Fri Jun 15 2018 iliana weller - 18.03.1ce-3 - Drop the kernel Requires for AL2 - Re-enable systemd support in AL2 * Wed May 16 2018 Jacob Vallejo - 18.03.1ce - Update packaging and patches for Docker 18.03.1. * Wed May 02 2018 Justin Haynes - 17.12.1ce - Patch https://github.com/moby/moby/issues/33803 via upstream https://github.com/moby/moby/pull/36522 * Mon Mar 26 2018 Justin Haynes - 17.12.1ce - Update packaging and patches for Docker 17.12.1. - Patch https://github.com/moby/moby/issues/36661 via upstream https://github.com/containerd/containerd/pull/2229 * Tue Jan 30 2018 Justin Haynes - 17.12.0ce - Update packaging and patches for Docker 17.12.0. * Mon Oct 20 2014 Lokesh Mandvekar - 1.3.0-1 - Resolves: rhbz#1153936 - update to v1.3.0 - don't install zsh files - iptables=false => ip-masq=false * Wed Oct 08 2014 Lokesh Mandvekar - 1.2.0-5 - Resolves: rhbz#1149882 - systemd unit and socket file updates * Tue Sep 30 2014 Lokesh Mandvekar - 1.2.0-4 - Resolves: rhbz#1139415 - correct path for bash completion /usr/share/bash-completion/completions - versioned provides for docker - golang versioned requirements for devel and pkg-devel - remove macros from changelog - don't own dirs owned by vim, systemd, bash * Thu Sep 25 2014 Lokesh Mandvekar - 1.2.0-3 - Resolves: rhbz#1145660 - support /etc/sysconfig/docker-storage From: Colin Walters - patch to ignore selinux if it's disabled https://github.com/docker/docker/commit/9e2eb0f1cc3c4ef000e139f1d85a20f0e00971e6 From: Dan Walsh * Sun Aug 24 2014 Lokesh Mandvekar - 1.2.0-2 - Provides docker only for f21 and above * Sat Aug 23 2014 Lokesh Mandvekar - 1.2.0-1 - Resolves: rhbz#1132824 - update to v1.2.0 * Sat Aug 16 2014 Fedora Release Engineering - 1.1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild * Fri Aug 01 2014 Lokesh Mandvekar - 1.1.2-2 - change conditionals * Thu Jul 31 2014 Lokesh Mandvekar - 1.1.2-1 - Resolves: rhbz#1124036 - update to upstream v1.1.2 * Mon Jul 28 2014 Vincent Batts - 1.0.0-10 - split out the import_path/pkg/... libraries, to avoid cyclic deps with libcontainer * Thu Jul 24 2014 Lokesh Mandvekar - 1.0.0-9 - /etc/sysconfig/docker should be config(noreplace) * Wed Jul 23 2014 Lokesh Mandvekar - 1.0.0-8 - Resolves: rhbz#1119849 - Resolves: rhbz#1119413 - min delta between upstream and packaged unitfiles - devel package owns directories it creates - ensure min NVRs used for systemd contain fixes RE: CVE-2014-3499 * Wed Jul 16 2014 Vincent Batts - 1.0.0-7 - clean up gopath - add Provides for docker libraries - produce a -devel with docker source libraries - accomodate golang rpm macros * Tue Jul 01 2014 Lokesh Mandvekar - 1.0.0-6 - Resolves: rhbz#1114810 - CVE-2014-3499 (correct bz#) * Tue Jul 01 2014 Lokesh Mandvekar - 1.0.0-5 - Resolves: rhbz#11114810 - CVE-2014-3499 * Tue Jun 24 2014 Lokesh Mandvekar - 1.0.0-4 - Set mode,user,group in docker.socket file * Sat Jun 14 2014 Lokesh Mandvekar - 1.0.0-3 - correct bogus date * Sat Jun 14 2014 Lokesh Mandvekar - 1.0.0-2 - RHBZ#1109533 patch libcontainer for finalize namespace error - RHBZ#1109039 build with updated golang-github-syndtr-gocapability - install Dockerfile.5 manpage * Mon Jun 09 2014 Lokesh Mandvekar - 1.0.0-1 - upstream version bump to v1.0.0 * Mon Jun 09 2014 Lokesh Mandvekar - 0.12.0-1 - RHBZ#1105789 Upstream bump to 0.12.0 * Sat Jun 07 2014 Fedora Release Engineering - 0.11.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Thu Jun 05 2014 Lokesh Mandvekar - 0.11.1-11 - unitfile should Require socket file (revert change in release 10) * Fri May 30 2014 Lokesh Mandvekar - 0.11.1-10 - do not require docker.socket in unitfile * Thu May 29 2014 Lokesh Mandvekar - 0.11.1-9 - BZ: change systemd service type to 'notify' * Thu May 29 2014 Lokesh Mandvekar - 0.11.1-8 - use systemd socket-activation version * Thu May 29 2014 Lokesh Mandvekar - 0.11.1-7 - add "Provides: docker" as per FPC exception (Matthew Miller ) * Thu May 29 2014 Lokesh Mandvekar - 0.11.1-6 - don't use docker.sysconfig meant for sysvinit (just to avoid confusion) * Thu May 29 2014 Lokesh Mandvekar - 0.11.1-5 - Bug 1084232 - add /etc/sysconfig/docker for additional args * Tue May 27 2014 Lokesh Mandvekar - 0.11.1-4 - patches for BZ 1088125, 1096375 * Fri May 09 2014 Lokesh Mandvekar - 0.11.1-3 - add selinux buildtag - enable selinux in unitfile * Fri May 09 2014 Lokesh Mandvekar - 0.11.1-2 - get rid of conditionals, separate out spec for each branch * Thu May 08 2014 Lokesh Mandvekar - 0.11.1-1 - Bug 1095616 - upstream bump to 0.11.1 - manpages via pandoc * Mon Apr 14 2014 Lokesh Mandvekar - 0.10.0-2 - regenerate btrfs removal patch - update commit value * Mon Apr 14 2014 Lokesh Mandvekar - 0.10.0-1 - include manpages from contrib * Wed Apr 09 2014 Bobby Powers - 0.10.0-1 - Upstream version bump * Thu Mar 27 2014 Lokesh Mandvekar - 0.9.1-1 - BZ 1080799 - upstream version bump * Thu Mar 13 2014 Adam Miller - 0.9.0-3 - Add lxc requirement for EPEL6 and patch init script to use lxc driver - Remove tar dep, no longer needed - Require libcgroup only for EPEL6 * Tue Mar 11 2014 Lokesh Mandvekar - 0.9.0-2 - lxc removed (optional) http://blog.docker.io/2014/03/docker-0-9-introducing-execution-drivers-and-libcontainer/ * Tue Mar 11 2014 Lokesh Mandvekar - 0.9.0-1 - BZ 1074880 - upstream version bump to v0.9.0 * Wed Feb 19 2014 Lokesh Mandvekar - 0.8.1-1 - Bug 1066841 - upstream version bump to v0.8.1 - use sysvinit files from upstream contrib - BR golang >= 1.2-7 * Thu Feb 13 2014 Adam Miller - 0.8.0-3 - Remove unneeded sysctl settings in initscript https://github.com/dotcloud/docker/pull/4125 * Sat Feb 08 2014 Lokesh Mandvekar - 0.8.0-2 - ignore btrfs for rhel7 and clones for now - include vim syntax highlighting from contrib/syntax/vim * Wed Feb 05 2014 Lokesh Mandvekar - 0.8.0-1 - upstream version bump - don't use btrfs for rhel6 and clones (yet) * Mon Jan 20 2014 Lokesh Mandvekar - 0.7.6-2 - bridge-utils only for rhel < 7 - discard freespace when image is removed * Thu Jan 16 2014 Lokesh Mandvekar - 0.7.6-1 - upstream version bump v0.7.6 - built with golang >= 1.2 * Thu Jan 09 2014 Lokesh Mandvekar - 0.7.5-1 - upstream version bump to 0.7.5 * Thu Jan 09 2014 Lokesh Mandvekar - 0.7.4-1 - upstream version bump to 0.7.4 (BZ #1049793) - udev rules file from upstream contrib - unit file firewalld not used, description changes * Mon Jan 06 2014 Lokesh Mandvekar - 0.7.3-3 - udev rules typo fixed (BZ 1048775) * Sat Jan 04 2014 Lokesh Mandvekar - 0.7.3-2 - missed commit value in release 1, updated now - upstream release monitoring (BZ 1048441) * Sat Jan 04 2014 Lokesh Mandvekar - 0.7.3-1 - upstream release bump to v0.7.3 * Thu Dec 19 2013 Lokesh Mandvekar - 0.7.2-2 - require xz to work with ubuntu images (BZ #1045220) * Wed Dec 18 2013 Lokesh Mandvekar - 0.7.2-1 - upstream release bump to v0.7.2 * Fri Dec 06 2013 Vincent Batts - 0.7.1-1 - upstream release of v0.7.1 * Mon Dec 02 2013 Lokesh Mandvekar - 0.7.0-14 - sysvinit patch corrected (epel only) - 80-docker.rules unified for udisks1 and udisks2 * Mon Dec 02 2013 Lokesh Mandvekar - 0.7.0-13 - removed firewall-cmd --add-masquerade * Sat Nov 30 2013 Lokesh Mandvekar - 0.7.0-12 - systemd for fedora >= 18 - firewalld in unit file changed from Requires to Wants - firewall-cmd --add-masquerade after docker daemon start in unit file (Michal Fojtik ), continue if not present (Michael Young ) - 80-docker.rules included for epel too, ENV variables need to be changed for udisks1 * Fri Nov 29 2013 Marek Goldmann - 0.7.0-11 - Redirect docker log to /var/log/docker (epel only) - Removed the '-b none' parameter from sysconfig, it's unnecessary since we create the bridge now automatically (epel only) - Make sure we have the cgconfig service started before we start docker, RHBZ#1034919 (epel only) * Thu Nov 28 2013 Lokesh Mandvekar - 0.7.0-10 - udev rules added for fedora >= 19 BZ 1034095 - epel testing pending * Thu Nov 28 2013 Lokesh Mandvekar - 0.7.0-9 - requires and started after firewalld * Thu Nov 28 2013 Lokesh Mandvekar - 0.7.0-8 - iptables-fix patch corrected * Thu Nov 28 2013 Lokesh Mandvekar - 0.7.0-7 - use upstream tarball and patch with mgoldman's commit * Thu Nov 28 2013 Lokesh Mandvekar - 0.7.0-6 - using mgoldman's shortcommit value 0ff9bc1 for package (BZ #1033606) - https://github.com/dotcloud/docker/pull/2907 * Wed Nov 27 2013 Adam Miller - 0.7.0-5 - Fix up EL6 preun/postun to not fail on postun scripts * Wed Nov 27 2013 Lokesh Mandvekar - 0.7.0-4 - brctl patch for rhel <= 7 * Wed Nov 27 2013 Vincent Batts - 0.7.0-3 - Patch how the bridge network is set up on RHEL (BZ #1035436) * Wed Nov 27 2013 Vincent Batts - 0.7.0-2 - add libcgroup require (BZ #1034919) * Tue Nov 26 2013 Marek Goldmann - 0.7.0-1 - Upstream release 0.7.0 - Using upstream script to build the binary * Mon Nov 25 2013 Vincent Batts - 0.7-0.20.rc7 - correct the build time defines (bz#1026545). Thanks dan-fedora. * Fri Nov 22 2013 Adam Miller - 0.7-0.19.rc7 - Remove xinetd entry, added sysvinit * Fri Nov 22 2013 Lokesh Mandvekar - 0.7-0.18.rc7 - rc version bump * Wed Nov 20 2013 Lokesh Mandvekar - 0.7-0.17.rc6 - removed ExecStartPost lines from docker.service (BZ #1026045) - dockerinit listed in files * Wed Nov 20 2013 Vincent Batts - 0.7-0.16.rc6 - adding back the none bridge patch * Wed Nov 20 2013 Vincent Batts - 0.7-0.15.rc6 - update docker source to crosbymichael/0.7.0-rc6 - bridge-patch is not needed on this branch * Tue Nov 19 2013 Vincent Batts - 0.7-0.14.rc5 - update docker source to crosbymichael/0.7-rc5 - update docker source to 457375ea370a2da0df301d35b1aaa8f5964dabfe - static magic - place dockerinit in a libexec - add sqlite dependency * Sat Nov 02 2013 Lokesh Mandvekar - 0.7-0.13.dm - docker.service file sets iptables rules to allow container networking, this is a stopgap approach, relevant pull request here: https://github.com/dotcloud/docker/pull/2527 * Sat Oct 26 2013 Lokesh Mandvekar - 0.7-0.12.dm - dm branch - dockerinit -> docker-init * Tue Oct 22 2013 Lokesh Mandvekar - 0.7-0.11.rc4 - passing version information for docker build BZ #1017186 * Sat Oct 19 2013 Lokesh Mandvekar - 0.7-0.10.rc4 - rc version bump - docker-init -> dockerinit - zsh completion script installed to /usr/share/zsh/site-functions * Fri Oct 18 2013 Lokesh Mandvekar - 0.7-0.9.rc3 - lxc-docker version matches package version * Fri Oct 18 2013 Lokesh Mandvekar - 0.7-0.8.rc3 - double quotes removed from buildrequires as per existing golang rules * Fri Oct 11 2013 Lokesh Mandvekar - 0.7-0.7.rc3 - xinetd file renamed to docker.xinetd for clarity * Thu Oct 10 2013 Lokesh Mandvekar - 0.7-0.6.rc3 - patched for el6 to use sphinx-1.0-build * Wed Oct 09 2013 Lokesh Mandvekar - 0.7-0.5.rc3 - rc3 version bump - exclusivearch x86_64 * Wed Oct 09 2013 Lokesh Mandvekar - 0.7-0.4.rc2 - debuginfo not Go-ready yet, skipped * Wed Oct 09 2013 Lokesh Mandvekar - 0.7-0.3.rc2 - debuginfo package generated - buildrequires listed with versions where needed - conditionals changed to reflect systemd or not - docker commit value not needed - versioned provides lxc-docker * Mon Oct 07 2013 Lokesh Mandvekar - 0.7-2.rc2 - rc branch includes devmapper - el6 BZ #1015865 fix included * Sun Oct 06 2013 Lokesh Mandvekar - 0.7-1 - version bump, includes devicemapper - epel conditionals included - buildrequires sqlite-devel * Fri Oct 04 2013 Lokesh Mandvekar - 0.6.3-4.devicemapper - docker-io service enables IPv4 and IPv6 forwarding - docker user not needed - golang not supported on ppc64, docker-io excluded too * Thu Oct 03 2013 Lokesh Mandvekar - 0.6.3-3.devicemapper - Docker rebuilt with latest kr/pty, first run issue solved * Fri Sep 27 2013 Marek Goldmann - 0.6.3-2.devicemapper - Remove setfcap from lxc.cap.drop to make setxattr() calls working in the containers, RHBZ#1012952 * Thu Sep 26 2013 Lokesh Mandvekar 0.6.3-1.devicemapper - version bump - new version solves docker push issues * Tue Sep 24 2013 Lokesh Mandvekar 0.6.2-14.devicemapper - package requires lxc * Tue Sep 24 2013 Lokesh Mandvekar 0.6.2-13.devicemapper - package requires tar * Tue Sep 24 2013 Lokesh Mandvekar 0.6.2-12.devicemapper - /var/lib/docker installed - package also provides lxc-docker * Mon Sep 23 2013 Lokesh Mandvekar 0.6.2-11.devicemapper - better looking url * Mon Sep 23 2013 Lokesh Mandvekar 0.6.2-10.devicemapper - release tag changed to denote devicemapper patch * Mon Sep 23 2013 Lokesh Mandvekar 0.6.2-9 - device-mapper-devel is a buildrequires for alex's code - docker.service listed as a separate source file * Sun Sep 22 2013 Matthew Miller 0.6.2-8 - install bash completion - use -v for go build to show progress * Sun Sep 22 2013 Matthew Miller 0.6.2-7 - build and install separate docker-init * Sun Sep 22 2013 Matthew Miller 0.6.2-4 - update to use new source-only golang lib packages * Sat Sep 21 2013 Lokesh Mandvekar 0.6.2-3 - man page generation from docs/. - systemd service file created - dotcloud/tar no longer required * Fri Sep 20 2013 Lokesh Mandvekar 0.6.2-2 - patched with alex larsson's devmapper code * Wed Sep 18 2013 Lokesh Mandvekar 0.6.2-1 - Version bump * Tue Sep 10 2013 Lokesh Mandvekar 0.6.1-2 - buildrequires updated - package renamed to docker-io * Fri Aug 30 2013 Lokesh Mandvekar 0.6.1-1 - Version bump - Package name change from lxc-docker to docker - Makefile patched from 0.5.3 * Wed Aug 28 2013 Lokesh Mandvekar 0.5.3-5 - File permissions settings included * Wed Aug 28 2013 Lokesh Mandvekar 0.5.3-4 - Credits in changelog modified as per reference's request * Tue Aug 27 2013 Lokesh Mandvekar 0.5.3-3 - Dependencies listed as rpm packages instead of tars - Install section added * Mon Aug 26 2013 Lokesh Mandvekar 0.5.3-2 - Github packaging - Deps not downloaded at build time courtesy Elan Ruusamäe - Manpage and other docs installed * Fri Aug 23 2013 Lokesh Mandvekar 0.5.3-1 - Initial fedora package - Some credit to Elan Ruusamäe (glen@pld-linux.org)