hughesjr / rpms / docker

Forked from rpms/docker 4 years ago
Clone

Blame SPECS/docker.spec

d03ac3
%global with_devel 0
d03ac3
%global with_unit_test 0
6a1755
%global with_debug 1
d03ac3
d03ac3
# modifying the dockerinit binary breaks the SHA1 sum check by docker
d03ac3
%global __os_install_post %{_rpmconfigdir}/brp-compress
d03ac3
6a1755
%if 0%{?with_debug}
6a1755
%global _find_debuginfo_dwz_opts %{nil}
6a1755
%global _dwz_low_mem_die_limit 0
6a1755
%else
6a1755
%global debug_package   %{nil}
6a1755
%endif
6a1755
d03ac3
%global provider_tld com
d03ac3
%global provider github
d03ac3
%global project docker
d03ac3
%global repo %{project}
d03ac3
d03ac3
%global import_path %{provider}.%{provider_tld}/%{project}/%{repo}
d03ac3
6242b9
%define gobuild(o:) go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${GO_LDFLAGS:-} ${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '-Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld'" -a -v -x %{?**};
d03ac3
d03ac3
# docker
d03ac3
%global git_docker https://github.com/projectatomic/docker
318924
%global commit_docker 07f3374cf1b29aadf824d8b8dcbf6e63403689c6
d03ac3
%global shortcommit_docker %(c=%{commit_docker}; echo ${c:0:7})
d03ac3
# docker_branch used in %%check
d03ac3
%global docker_branch %{name}-%{version}
d03ac3
d03ac3
# d-s-s
d03ac3
%global git_dss https://github.com/projectatomic/container-storage-setup
318924
%global commit_dss 413b4080c0b9346a242d88137bb3e9e0a6aa25f9
d03ac3
%global shortcommit_dss %(c=%{commit_dss}; echo ${c:0:7})
d03ac3
%global dss_libdir %{_exec_prefix}/lib/%{name}-storage-setup
d03ac3
d03ac3
# v1.10-migrator
d03ac3
%global git_migrator https://github.com/%{repo}/v1.10-migrator
d03ac3
%global commit_migrator c417a6a022c5023c111662e8280f885f6ac259be
d03ac3
%global shortcommit_migrator %(c=%{commit_migrator}; echo ${c:0:7})
d03ac3
d03ac3
# docker-novolume-plugin
d03ac3
%global git_novolume https://github.com/projectatomic/%{repo}-novolume-plugin
d03ac3
%global commit_novolume 385ec70baac3ef356f868f391c8d7818140fbd44
d03ac3
%global shortcommit_novolume %(c=%{commit_novolume}; echo ${c:0:7})
d03ac3
d03ac3
# rhel-push-plugin
d03ac3
%global git_rhel_push https://github.com/projectatomic/rhel-push-plugin
d03ac3
%global commit_rhel_push af9107b2aedb235338e32a3c19507cad3f218b0d
d03ac3
%global shortcommit_rhel_push %(c=%{commit_rhel_push}; echo ${c:0:7})
d03ac3
d03ac3
# docker-lvm-plugin
d03ac3
%global git_lvm https://github.com/projectatomic/%{repo}-lvm-plugin
6a1755
%global commit_lvm 20a1f68da4daecd1f7f59c5b794dd25c2f50ba02
d03ac3
%global shortcommit_lvm %(c=%{commit_lvm}; echo ${c:0:7})
d03ac3
d03ac3
# docker-runc
d03ac3
%global git_runc https://github.com/projectatomic/runc
7ef0f3
%global commit_runc 290a33602b16ff2d1cc5339bc0297f0e094462ce
d03ac3
%global shortcommit_runc %(c=%{commit_runc}; echo ${c:0:7})
d03ac3
d03ac3
# docker-containerd
d03ac3
%global git_containerd https://github.com/projectatomic/containerd
6242b9
%global commit_containerd b968034319d76c623176301198c1e34ea6541b33
d03ac3
%global shortcommit_containerd %(c=%{commit_containerd}; echo ${c:0:7})
d03ac3
10eb08
# docker-init
10eb08
%global git_tini https://github.com/krallin/tini
acaa69
%global commit_tini fec3683b971d9c3ef73f284f176672c44b448662
10eb08
%global shortcommit_tini %(c=%{commit_tini}; echo ${c:0:7})
10eb08
10eb08
# docker-proxy
10eb08
%global git_libnetwork https://github.com/docker/libnetwork
318924
%global commit_libnetwork c5d66a04ae80cd8fa2465ea99c0b2b1a6840cb93
10eb08
%global shortcommit_libnetwork %(c=%{commit_libnetwork}; echo ${c:0:7})
10eb08
d03ac3
Name: %{repo}
d03ac3
Epoch: 2
10eb08
Version: 1.13.1
6242b9
Release: 90.git%{shortcommit_docker}%{?dist}
d03ac3
Summary: Automates deployment of containerized applications
d03ac3
License: ASL 2.0
d03ac3
URL: https://%{import_path}
318924
ExclusiveArch: aarch64 %{arm} ppc64le s390x x86_64
d03ac3
Source0: %{git_docker}/archive/%{commit_docker}.tar.gz
d03ac3
Source2: %{git_dss}/archive/%{commit_dss}/container-storage-setup-%{shortcommit_dss}.tar.gz
d03ac3
Source4: %{git_novolume}/archive/%{commit_novolume}/%{repo}-novolume-plugin-%{shortcommit_novolume}.tar.gz
d03ac3
Source5: %{git_rhel_push}/archive/%{commit_rhel_push}/rhel-push-plugin-%{shortcommit_rhel_push}.tar.gz
d03ac3
Source6: %{git_lvm}/archive/%{commit_lvm}/%{repo}-lvm-plugin-%{shortcommit_lvm}.tar.gz
d03ac3
Source8: %{name}.service
d03ac3
Source9: %{name}.sysconfig
d03ac3
Source10: %{name}-storage.sysconfig
d03ac3
Source11: %{name}-network.sysconfig
d03ac3
Source12: %{name}-logrotate.sh
d03ac3
Source13: README.%{name}-logrotate
d03ac3
Source14: %{name}-common.sh
d03ac3
Source15: README-%{name}-common
d03ac3
Source17: %{git_migrator}/archive/%{commit_migrator}/v1.10-migrator-%{shortcommit_migrator}.tar.gz
d03ac3
Source18: v1.10-migrator-helper
d03ac3
Source19: %{git_runc}/archive/%{commit_runc}/runc-%{shortcommit_runc}.tar.gz
d03ac3
Source20: %{git_containerd}/archive/%{commit_containerd}/containerd-%{shortcommit_containerd}.tar.gz
d03ac3
Source21: %{name}-containerd-common.sh
d03ac3
Source22: %{name}-containerd-shim-common.sh
d03ac3
Source24: %{name}d-common.sh
d03ac3
Source25: %{name}-cleanup.service
d03ac3
Source26: %{name}-cleanup.timer
d03ac3
Source27: daemon.json
d03ac3
Source29: 99-docker.conf
10eb08
Source30: %{git_tini}/archive/%{commit_tini}/tini-%{shortcommit_tini}.tar.gz
10eb08
Source31: %{git_libnetwork}/archive/%{commit_libnetwork}/libnetwork-%{shortcommit_libnetwork}.tar.gz
10eb08
Source32: seccomp.json
10eb08
BuildRequires: cmake
d03ac3
BuildRequires: sed
d03ac3
BuildRequires: git
d03ac3
BuildRequires: glibc-static
7ef0f3
%if 0%{?fedora} || 0%{?centos}
7ef0f3
BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang}
7ef0f3
%else
7ef0f3
BuildRequires: go-toolset-1.10
318924
BuildRequires: openssl-devel
7ef0f3
%endif #fedora
d03ac3
BuildRequires: gpgme-devel
d03ac3
BuildRequires: device-mapper-devel
d03ac3
BuildRequires: pkgconfig(audit)
d03ac3
BuildRequires: btrfs-progs-devel
d03ac3
BuildRequires: sqlite-devel
d03ac3
BuildRequires: go-md2man >= 1.0.4
d03ac3
BuildRequires: pkgconfig(systemd)
d03ac3
BuildRequires: libseccomp-devel
d03ac3
BuildRequires: libassuan-devel
6a1755
%if 0%{?centos}
6a1755
Requires: subscription-manager-rhsm-certificates
6a1755
%endif # centos
d03ac3
Requires: %{name}-common = %{epoch}:%{version}-%{release}
d03ac3
Requires: %{name}-client = %{epoch}:%{version}-%{release}
d03ac3
Requires(post): systemd
d03ac3
Requires(preun): systemd
d03ac3
Requires(postun): systemd
d03ac3
Provides: lxc-%{name} = %{epoch}:%{version}-%{release}
d03ac3
Provides: %{name}-io = %{epoch}:%{version}-%{release}
d03ac3
d03ac3
%description
d03ac3
Docker is an open-source engine that automates the deployment of any
d03ac3
application as a lightweight, portable, self-sufficient container that will
d03ac3
run virtually anywhere.
d03ac3
d03ac3
Docker containers can encapsulate any payload, and will run consistently on
d03ac3
and between virtually any server. The same container that a developer builds
d03ac3
and tests on a laptop will run at scale, in production*, on VMs, bare-metal
d03ac3
servers, OpenStack clusters, public instances, or combinations of the above.
d03ac3
d03ac3
%if 0%{?with_unit_test}
d03ac3
%package unit-test
d03ac3
Summary: %{summary} - for running unit tests
d03ac3
d03ac3
%description unit-test
d03ac3
%{summary} - for running unit tests
d03ac3
%endif
d03ac3
d03ac3
%package logrotate
d03ac3
Summary: cron job to run logrotate on Docker containers
d03ac3
Requires: %{name} = %{epoch}:%{version}-%{release}
d03ac3
Provides: %{name}-io-logrotate = %{epoch}:%{version}-%{release}
d03ac3
d03ac3
%description logrotate
d03ac3
This package installs %{summary}. logrotate is assumed to be installed on
d03ac3
containers for this to work, failures are silently ignored.
d03ac3
d03ac3
%package v1.10-migrator
d03ac3
License: ASL 2.0 and CC-BY-SA
d03ac3
Summary: Calculates SHA256 checksums for docker layer content
d03ac3
d03ac3
%description v1.10-migrator
d03ac3
Starting from v1.10 docker uses content addressable IDs for the images and
d03ac3
layers instead of using generated ones. This tool calculates SHA256 checksums
d03ac3
for docker layer content, so that they don't need to be recalculated when the
d03ac3
daemon starts for the first time.
d03ac3
d03ac3
The migration usually runs on daemon startup but it can be quite slow(usually
d03ac3
100-200MB/s) and daemon will not be able to accept requests during
d03ac3
that time. You can run this tool instead while the old daemon is still
d03ac3
running and skip checksum calculation on startup.
d03ac3
d03ac3
%package common
d03ac3
Summary: Common files for docker and docker-latest
d03ac3
Requires: device-mapper-libs >= 7:1.02.97
9ab233
Requires: oci-umount >= 2:2.3.3-3
10eb08
Requires: oci-register-machine >= 1:0-5.13
d03ac3
Requires: oci-systemd-hook >= 1:0.1.4-9
d03ac3
Requires: %{name}-rhel-push-plugin = %{epoch}:%{version}-%{release}
d03ac3
Requires: xz
d03ac3
Requires: atomic-registries
9ab233
Requires: container-selinux >= 2:2.51-1
9ab233
Requires: container-storage-setup >= 0.9.0-1
d03ac3
# rhbz#1214070 - update deps for d-s-s
d03ac3
Requires: lvm2 >= 2.02.112
d03ac3
Requires: xfsprogs
d03ac3
# rhbz#1282898 - obsolete docker-storage-setup
d03ac3
Obsoletes: %{name}-storage-setup <= 0.0.4-2
10eb08
Requires: skopeo-containers >= 1:0.1.26-2
d03ac3
Requires: gnupg
d03ac3
Requires: tar
d03ac3
d03ac3
%description common
d03ac3
This package contains the common files %{_bindir}/%{name} which will point to
d03ac3
%{_bindir}/%{name}-current or %{_bindir}/%{name}-latest configurable via
d03ac3
%{_sysconfdir}/sysconfig/%{repo}
d03ac3
d03ac3
%package client
d03ac3
Summary: Client side files for Docker
d03ac3
License: ASL 2.0
d03ac3
Requires: %{repo}-common
d03ac3
d03ac3
%description client
d03ac3
%{summary}
d03ac3
d03ac3
%package novolume-plugin
d03ac3
URL: %{git_novolume}
d03ac3
License: MIT
d03ac3
Summary: Block container starts with local volumes defined
d03ac3
Requires: %{name} = %{epoch}:%{version}-%{release}
d03ac3
d03ac3
%description novolume-plugin
d03ac3
When a volume in provisioned via the `VOLUME` instruction in a Dockerfile or
d03ac3
via `docker run -v volumename`, host's storage space is used. This could lead to
d03ac3
an unexpected out of space issue which could bring down everything.
d03ac3
There are situations where this is not an accepted behavior. PAAS, for
d03ac3
instance, can't allow their users to run their own images without the risk of
d03ac3
filling the entire storage space on a server. One solution to this is to deny users
d03ac3
from running images with volumes. This way the only storage a user gets can be limited
d03ac3
and PAAS can assign quota to it.
d03ac3
d03ac3
This plugin solves this issue by disallowing starting a container with
d03ac3
local volumes defined. In particular, the plugin will block `docker run` with:
d03ac3
d03ac3
- `--volumes-from`
d03ac3
- images that have `VOLUME`(s) defined
d03ac3
- volumes early provisioned with `docker volume` command
d03ac3
d03ac3
The only thing allowed will be just bind mounts.
d03ac3
d03ac3
%package rhel-push-plugin
d03ac3
License: GPLv2
d03ac3
Summary: Avoids pushing a RHEL-based image to docker.io registry
d03ac3
d03ac3
%description rhel-push-plugin
d03ac3
In order to use this plugin you must be running at least Docker 1.10 which
d03ac3
has support for authorization plugins.
d03ac3
d03ac3
This plugin avoids any RHEL based image to be pushed to the default docker.io
d03ac3
registry preventing users to violate the RH subscription agreement.
d03ac3
d03ac3
%package lvm-plugin
d03ac3
License: LGPLv3
d03ac3
Summary: Docker volume driver for lvm volumes
d03ac3
Requires: %{name} = %{epoch}:%{version}-%{release}
d03ac3
d03ac3
%description lvm-plugin
d03ac3
Docker Volume Driver for lvm volumes.
d03ac3
d03ac3
This plugin can be used to create lvm volumes of specified size, which can
d03ac3
then be bind mounted into the container using `docker run` command.
d03ac3
6242b9
%{?enable_gotoolset110}
318924
d03ac3
%prep
d03ac3
%setup -q -n %{name}-%{commit_docker}
d03ac3
d03ac3
# untar d-s-s
d03ac3
tar zxf %{SOURCE2}
d03ac3
d03ac3
# untar novolume-plugin
d03ac3
tar zxf %{SOURCE4}
d03ac3
d03ac3
# untar rhel-push-plugin
d03ac3
tar zxf %{SOURCE5}
d03ac3
d03ac3
# untar lvm-plugin
d03ac3
tar zxf %{SOURCE6}
acaa69
sed -i 's/sirupsen/Sirupsen/g' %{name}-lvm-plugin-%{commit_lvm}/Godeps/_workspace/src/%{import_path}/pkg/mount/mount.go
d03ac3
d03ac3
# systemd file
d03ac3
cp %{SOURCE8} .
d03ac3
d03ac3
# sysconfig file
d03ac3
cp %{SOURCE9} .
d03ac3
d03ac3
# storage sysconfig file
d03ac3
cp %{SOURCE10} .
d03ac3
d03ac3
# network sysconfig file
d03ac3
cp %{SOURCE11} .
d03ac3
d03ac3
# logrotate README
d03ac3
cp %{SOURCE13} .
d03ac3
d03ac3
# common exec README
d03ac3
cp %{SOURCE15} .
d03ac3
d03ac3
# untar v1.10-migrator
d03ac3
tar zxf %{SOURCE17}
d03ac3
d03ac3
# untar docker-runc
d03ac3
tar zxf %{SOURCE19}
d03ac3
d03ac3
# untar docker-containerd
d03ac3
tar zxf %{SOURCE20}
d03ac3
10eb08
# untar docker-init
10eb08
tar zxf %{SOURCE30}
10eb08
10eb08
# untar libnetwork
10eb08
tar zxf %{SOURCE31}
10eb08
d03ac3
%build
10eb08
# compile docker-proxy first - otherwise deps in gopath conflict with the others below and this fails. Remove libnetwork libs then.
10eb08
pushd libnetwork-%{commit_libnetwork}
10eb08
mkdir -p src/github.com/%{repo}/libnetwork
10eb08
ln -s $(pwd)/* src/github.com/%{repo}/libnetwork
10eb08
export GOPATH=$(pwd)
6242b9
export GO_LDFLAGS="-linkmode=external"
6242b9
%gobuild -o %{repo}-proxy github.com/%{repo}/libnetwork/cmd/proxy
10eb08
popd
10eb08
d03ac3
mkdir _build
d03ac3
d03ac3
%global version_tag %{name}-%{version}-%{release}.%{_arch}
9ab233
%{__sed} -r -i 's/^([\t ]*PkgVersion:[\t ]*)"<unknown>",$/\1"%{version_tag}",/' daemon/info.go
9ab233
%{__sed} -r -i 's/^([\t ]*PkgVersion:[\t ]*)"<unknown>",$/\1"%{version_tag}",/' cli/command//system/version.go
d03ac3
d03ac3
pushd _build
d03ac3
  mkdir -p src/%{provider}.%{provider_tld}/{%{name},projectatomic}
d03ac3
  ln -s $(dirs +1 -l) src/%{import_path}
d03ac3
  ln -s $(dirs +1 -l)/%{repo}-novolume-plugin-%{commit_novolume} src/%{provider}.%{provider_tld}/projectatomic/%{repo}-novolume-plugin
d03ac3
  ln -s $(dirs +1 -l)/rhel-push-plugin-%{commit_rhel_push} src/%{provider}.%{provider_tld}/projectatomic/rhel-push-plugin
d03ac3
  ln -s $(dirs +1 -l)/%{repo}-lvm-plugin-%{commit_lvm} src/%{provider}.%{provider_tld}/projectatomic/%{repo}-lvm-plugin
d03ac3
popd
d03ac3
d03ac3
export GOPATH=$(pwd)/%{repo}-novolume-plugin-%{commit_novolume}/Godeps/_workspace:$(pwd)/_build
d03ac3
pushd $(pwd)/_build/src
d03ac3
%gobuild %{provider}.%{provider_tld}/projectatomic/%{repo}-novolume-plugin
d03ac3
popd
d03ac3
d03ac3
export GOPATH=$(pwd)/rhel-push-plugin-%{commit_rhel_push}/Godeps/_workspace:$(pwd)/_build
d03ac3
pushd $(pwd)/_build/src
d03ac3
%gobuild %{provider}.%{provider_tld}/projectatomic/rhel-push-plugin
d03ac3
popd
d03ac3
acaa69
export GOPATH=$(pwd)/%{repo}-lvm-plugin-%{commit_lvm}/Godeps/_workspace:$(pwd)/_build
d03ac3
pushd $(pwd)/_build/src
d03ac3
%gobuild %{provider}.%{provider_tld}/projectatomic/%{repo}-lvm-plugin
d03ac3
popd
d03ac3
7ef0f3
pushd containerd-%{commit_containerd}
7ef0f3
mkdir -p vendor/src/%(dirname github.com/docker/containerd)
7ef0f3
ln -s ../../../.. vendor/src/github.com/docker/containerd
7ef0f3
export GOPATH=$(pwd)/vendor
7ef0f3
%gobuild -o bin/containerd github.com/docker/containerd/containerd
7ef0f3
%gobuild -o bin/containerd-shim github.com/docker/containerd/containerd-shim
7ef0f3
%gobuild -o bin/ctr github.com/docker/containerd/ctr
7ef0f3
popd
7ef0f3
d03ac3
export DOCKER_GITCOMMIT="%{shortcommit_docker}/%{version}"
d03ac3
export DOCKER_BUILDTAGS='selinux seccomp'
318924
export GOPATH=$(pwd)/_build:$(pwd)/vendor
d03ac3
d03ac3
# build %%{name} manpages
d03ac3
man/md2man-all.sh
d03ac3
go-md2man -in %{repo}-novolume-plugin-%{commit_novolume}/man/%{repo}-novolume-plugin.8.md -out %{repo}-novolume-plugin.8
d03ac3
go-md2man -in rhel-push-plugin-%{commit_rhel_push}/man/rhel-push-plugin.8.md -out rhel-push-plugin.8
d03ac3
go-md2man -in %{repo}-lvm-plugin-%{commit_lvm}/man/%{repo}-lvm-plugin.8.md -out %{repo}-lvm-plugin.8
d03ac3
d03ac3
# build %%{name} binary
d03ac3
IAMSTATIC=false DOCKER_DEBUG=1 hack/make.sh dynbinary
d03ac3
cp contrib/syntax/vim/LICENSE LICENSE-vim-syntax
d03ac3
cp contrib/syntax/vim/README.md README-vim-syntax.md
d03ac3
d03ac3
# build v1.10-migrator
d03ac3
pushd v1.10-migrator-%{commit_migrator}
d03ac3
export GOPATH=$GOPATH:$(pwd)/Godeps/_workspace
d03ac3
sed -i 's/godep //g' Makefile
d03ac3
make v1.10-migrator-local
d03ac3
popd
d03ac3
d03ac3
# build %%{repo}-runc
d03ac3
pushd runc-%{commit_runc}
6242b9
export RUNC_VERSION=$(cat ./VERSION)
7ef0f3
mkdir -p GOPATH
7ef0f3
pushd GOPATH
7ef0f3
mkdir -p src/%{provider}.%{provider_tld}/opencontainers
7ef0f3
ln -s $(dirs +1 -l) src/github.com/opencontainers/runc
7ef0f3
popd
7ef0f3
 
7ef0f3
pushd GOPATH/src/github.com/opencontainers/runc
7ef0f3
export GOPATH=$(pwd)/GOPATH:$(pwd)/Godeps/_workspace
7ef0f3
export BUILDTAGS='selinux seccomp'
6242b9
export GO_LDFLAGS="-X main.gitCommit=%{commit_runc} -X main.version=$RUNC_VERSION"
7ef0f3
%gobuild -o runc github.com/opencontainers/runc
7ef0f3
7ef0f3
pushd man
7ef0f3
./md2man-all.sh
d03ac3
popd
d03ac3
popd
d03ac3
popd
d03ac3
10eb08
# build docker-init
10eb08
pushd tini-%{commit_tini}
7ef0f3
cmake .
9ab233
sed -i 's/#define TINI_GIT     ""/#define TINI_GIT     " - git.%{commit_tini}"/g' tiniConfig.h
10eb08
make tini-static
10eb08
popd
10eb08
d03ac3
%install
d03ac3
# install binary
d03ac3
install -d %{buildroot}%{_bindir}
d03ac3
install -d %{buildroot}%{_libexecdir}/%{repo}
d03ac3
d03ac3
for x in bundles/latest; do
d03ac3
    if ! test -d $x/dynbinary-client; then
d03ac3
        continue
d03ac3
    fi
d03ac3
    rm $x/dynbinary-client/*.{md5,sha256}
d03ac3
    install -p -m 755 $x/dynbinary-client/%{repo}-%{version}* %{buildroot}%{_bindir}/%{name}-current
d03ac3
    break
d03ac3
done
d03ac3
d03ac3
for x in bundles/latest; do
d03ac3
    if ! test -d $x/dynbinary-daemon; then
d03ac3
    continue
d03ac3
    fi
d03ac3
    rm $x/dynbinary-daemon/*.{md5,sha256}
d03ac3
    install -p -m 755 $x/dynbinary-daemon/%{repo}d-* %{buildroot}%{_bindir}/%{repo}d-current
d03ac3
    break
d03ac3
done
d03ac3
10eb08
# install daemon.json and seccomp.json
10eb08
install -dp %{buildroot}%{_sysconfdir}/%{name}
10eb08
install -p -m 644 %{SOURCE32} %{buildroot}%{_sysconfdir}/%{name}
10eb08
10eb08
#install docker-proxy
10eb08
install -d %{buildroot}%{_libexecdir}/%{repo}
10eb08
install -p -m 755 libnetwork-%{commit_libnetwork}/%{repo}-proxy %{buildroot}%{_libexecdir}/%{repo}/%{repo}-proxy-current
10eb08
d03ac3
install -dp %{buildroot}%{_sysconfdir}/%{name}
d03ac3
install -p -m 644 %{SOURCE27} %{buildroot}%{_sysconfdir}/%{name}
d03ac3
d03ac3
# install manpages
d03ac3
install -d %{buildroot}%{_mandir}/man1
d03ac3
install -p -m 644 man/man1/* %{buildroot}%{_mandir}/man1
d03ac3
install -d %{buildroot}%{_mandir}/man5
d03ac3
install -p -m 644 man/man5/* %{buildroot}%{_mandir}/man5
d03ac3
install -d %{buildroot}%{_mandir}/man8
d03ac3
install -p -m 644 man/man8/%{repo}*.8 %{buildroot}%{_mandir}/man8
d03ac3
d03ac3
# install bash completion
d03ac3
install -d %{buildroot}%{_datadir}/bash-completion/completions/
d03ac3
install -p -m 644 contrib/completion/bash/%{name} %{buildroot}%{_datadir}/bash-completion/completions/
d03ac3
d03ac3
# install fish completion
d03ac3
# create, install and own %%{_datadir}/fish/vendor_completions.d until
d03ac3
# upstream fish provides it
d03ac3
install -dp %{buildroot}%{_datadir}/fish/vendor_completions.d
d03ac3
install -p -m 644 contrib/completion/fish/%{name}.fish %{buildroot}%{_datadir}/fish/vendor_completions.d
d03ac3
d03ac3
# install container logrotate cron script
d03ac3
install -dp %{buildroot}%{_sysconfdir}/cron.daily/
d03ac3
install -p -m 755 %{SOURCE12} %{buildroot}%{_sysconfdir}/cron.daily/%{name}-logrotate
d03ac3
d03ac3
# install vim syntax highlighting
d03ac3
install -d %{buildroot}%{_datadir}/vim/vimfiles/{doc,ftdetect,syntax}
d03ac3
install -p -m 644 contrib/syntax/vim/doc/%{name}file.txt %{buildroot}%{_datadir}/vim/vimfiles/doc
d03ac3
install -p -m 644 contrib/syntax/vim/ftdetect/%{name}file.vim %{buildroot}%{_datadir}/vim/vimfiles/ftdetect
d03ac3
install -p -m 644 contrib/syntax/vim/syntax/%{name}file.vim %{buildroot}%{_datadir}/vim/vimfiles/syntax
d03ac3
d03ac3
# install zsh completion
d03ac3
install -d %{buildroot}%{_datadir}/zsh/site-functions
d03ac3
install -p -m 644 contrib/completion/zsh/_%{name} %{buildroot}%{_datadir}/zsh/site-functions
d03ac3
d03ac3
# install udev rules
d03ac3
install -d %{buildroot}%{_udevrulesdir}
d03ac3
install -p -m 755 contrib/udev/80-%{name}.rules %{buildroot}%{_udevrulesdir}
d03ac3
d03ac3
# install storage dir
d03ac3
install -d -m 700 %{buildroot}%{_sharedstatedir}/%{name}
d03ac3
d03ac3
# install systemd/init scripts
d03ac3
install -d %{buildroot}%{_unitdir}
d03ac3
install -p -m 644 %{SOURCE8} %{buildroot}%{_unitdir}
d03ac3
install -p -m 644 %{SOURCE25} %{buildroot}%{_unitdir}
d03ac3
install -p -m 644 %{SOURCE26} %{buildroot}%{_unitdir}
d03ac3
d03ac3
# for additional args
d03ac3
install -d %{buildroot}%{_sysconfdir}/sysconfig/
d03ac3
install -p -m 644 %{SOURCE9} %{buildroot}%{_sysconfdir}/sysconfig/%{name}
d03ac3
install -p -m 644 %{SOURCE10} %{buildroot}%{_sysconfdir}/sysconfig/%{name}-storage
d03ac3
install -p -m 644 %{SOURCE11} %{buildroot}%{_sysconfdir}/sysconfig/%{name}-network
d03ac3
d03ac3
%if 0%{?with_unit_test}
d03ac3
install -d -m 0755 %{buildroot}%{_sharedstatedir}/%{name}-unit-test/
d03ac3
cp -pav VERSION Dockerfile %{buildroot}%{_sharedstatedir}/%{name}-unit-test/.
d03ac3
for d in */ ; do
d03ac3
  cp -a $d %{buildroot}%{_sharedstatedir}/%{name}-unit-test/
d03ac3
done
d03ac3
# remove %%{name}.initd as it requires /sbin/runtime no packages in Fedora
d03ac3
rm -rf %{buildroot}%{_sharedstatedir}/%{name}-unit-test/contrib/init/openrc/%{name}.initd
d03ac3
%endif
d03ac3
d03ac3
# install certs for redhat registries
d03ac3
mkdir -p %{buildroot}/etc/%{name}/certs.d/redhat.{com,io}
d03ac3
mkdir -p %{buildroot}/etc/%{name}/certs.d/registry.access.redhat.com
d03ac3
ln -s %{_sysconfdir}/rhsm/ca/redhat-uep.pem %{buildroot}/%{_sysconfdir}/%{name}/certs.d/redhat.com/redhat-ca.crt
d03ac3
ln -s %{_sysconfdir}/rhsm/ca/redhat-uep.pem %{buildroot}/%{_sysconfdir}/%{name}/certs.d/redhat.io/redhat-ca.crt
d03ac3
ln -s %{_sysconfdir}/rhsm/ca/redhat-uep.pem %{buildroot}/%{_sysconfdir}/%{name}/certs.d/registry.access.redhat.com/redhat-ca.crt
d03ac3
d03ac3
# install container-storage-setup
d03ac3
pushd container-storage-setup-%{commit_dss}
d03ac3
make install-docker DESTDIR=%{buildroot}
d03ac3
popd
d03ac3
d03ac3
# install %%{_bindir}/%%{name}
d03ac3
install -d %{buildroot}%{_bindir}
d03ac3
install -p -m 755 %{SOURCE14} %{buildroot}%{_bindir}/%{name}
d03ac3
install -p -m 755 %{SOURCE24} %{buildroot}%{_bindir}/%{name}d
d03ac3
install -p -m 755 %{SOURCE21} %{buildroot}%{_bindir}/%{name}-containerd
d03ac3
install -p -m 755 %{SOURCE22} %{buildroot}%{_bindir}/%{name}-containerd-shim
d03ac3
d03ac3
# install novolume-plugin executable, unitfile, socket and man
d03ac3
install -d %{buildroot}/%{_libexecdir}/%{repo}
d03ac3
install -p -m 755 _build/src/%{repo}-novolume-plugin %{buildroot}/%{_libexecdir}/%{repo}/%{repo}-novolume-plugin
d03ac3
install -p -m 644 %{repo}-novolume-plugin-%{commit_novolume}/systemd/%{repo}-novolume-plugin.s* %{buildroot}%{_unitdir}
d03ac3
install -d %{buildroot}%{_mandir}/man8
d03ac3
install -p -m 644 %{repo}-novolume-plugin.8 %{buildroot}%{_mandir}/man8
d03ac3
d03ac3
# install rhel-push-plugin executable, unitfile, socket and man
d03ac3
install -d %{buildroot}%{_libexecdir}/%{repo}
d03ac3
install -p -m 755 _build/src/rhel-push-plugin %{buildroot}%{_libexecdir}/%{repo}/rhel-push-plugin
d03ac3
install -p -m 644 rhel-push-plugin-%{commit_rhel_push}/systemd/rhel-push-plugin.service %{buildroot}%{_unitdir}/rhel-push-plugin.service
d03ac3
install -p -m 644 rhel-push-plugin-%{commit_rhel_push}/systemd/rhel-push-plugin.socket %{buildroot}%{_unitdir}/rhel-push-plugin.socket
d03ac3
install -d %{buildroot}%{_mandir}/man8
d03ac3
install -p -m 644 rhel-push-plugin.8 %{buildroot}%{_mandir}/man8
d03ac3
d03ac3
# install %%{repo}-lvm-plugin executable, unitfile, socket and man
d03ac3
install -d %{buildroot}/%{_libexecdir}/%{repo}
d03ac3
install -p -m 755 _build/src/%{repo}-lvm-plugin %{buildroot}/%{_libexecdir}/%{repo}/%{repo}-lvm-plugin
d03ac3
install -p -m 644 %{repo}-lvm-plugin-%{commit_lvm}/systemd/%{repo}-lvm-plugin.s* %{buildroot}%{_unitdir}
d03ac3
install -d %{buildroot}%{_mandir}/man8
d03ac3
install -p -m 644 %{repo}-lvm-plugin.8 %{buildroot}%{_mandir}/man8
d03ac3
mkdir -p %{buildroot}%{_sysconfdir}/%{repo}
d03ac3
install -p -m 644 %{repo}-lvm-plugin-%{commit_lvm}%{_sysconfdir}/%{repo}/%{repo}-lvm-plugin %{buildroot}%{_sysconfdir}/%{repo}/%{repo}-lvm-plugin
d03ac3
d03ac3
# install v1.10-migrator
d03ac3
install -d %{buildroot}%{_bindir}
d03ac3
install -p -m 700 v1.10-migrator-%{commit_migrator}/v1.10-migrator-local %{buildroot}%{_bindir}/%{name}-v1.10-migrator-local
d03ac3
d03ac3
# install v1.10-migrator-helper
d03ac3
install -p -m 700 %{SOURCE18} %{buildroot}%{_bindir}/%{name}-v1.10-migrator-helper
d03ac3
d03ac3
# install docker-runc
d03ac3
install -d %{buildroot}%{_libexecdir}/%{repo}
d03ac3
install -p -m 755 runc-%{commit_runc}/runc %{buildroot}%{_libexecdir}/%{repo}/%{repo}-runc-current
d03ac3
d03ac3
#install docker-containerd
d03ac3
install -p -m 755 containerd-%{commit_containerd}/bin/containerd %{buildroot}%{_bindir}/%{repo}-containerd-current
d03ac3
install -p -m 755 containerd-%{commit_containerd}/bin/containerd-shim %{buildroot}%{_bindir}/%{repo}-containerd-shim-current
d03ac3
install -p -m 755 containerd-%{commit_containerd}/bin/ctr %{buildroot}%{_bindir}/%{repo}-ctr-current
d03ac3
d03ac3
#install sysctl knob
d03ac3
install -d -p %{buildroot}%{_usr}/lib/sysctl.d
d03ac3
install -p -m 644 %{SOURCE29} %{buildroot}%{_usr}/lib/sysctl.d
d03ac3
10eb08
#install tini
10eb08
install -d %{buildroot}%{_libexecdir}/%{repo}
10eb08
install -p -m 755 tini-%{commit_tini}/tini-static %{buildroot}%{_libexecdir}/%{repo}/%{repo}-init-current
10eb08
d03ac3
%check
d03ac3
[ ! -w /run/%{name}.sock ] || {
d03ac3
    mkdir test_dir
d03ac3
    pushd test_dir
d03ac3
    git clone https://%{provider}.%{provider_tld}/projectatomic/%{repo}.git -b %{docker_branch}
d03ac3
    pushd %{repo}
d03ac3
    make test
d03ac3
    popd
d03ac3
    popd
d03ac3
}
d03ac3
d03ac3
%pre
d03ac3
getent passwd %{name}root > /dev/null || %{_sbindir}/useradd -r -d %{_sharedstatedir}/%{name} -s /sbin/nologin -c "Docker User" %{name}root
d03ac3
exit 0
d03ac3
d03ac3
%post
d03ac3
%systemd_post %{name}.service
d03ac3
d03ac3
%preun
d03ac3
%systemd_preun %{name}.service
d03ac3
d03ac3
%postun
d03ac3
%systemd_postun_with_restart %{name}.service
d03ac3
d03ac3
%post common
d03ac3
%sysctl_apply 99-%{name}.conf
d03ac3
d03ac3
%post lvm-plugin
d03ac3
%systemd_post %{name}-lvm-plugin.service
d03ac3
d03ac3
%preun lvm-plugin
d03ac3
%systemd_preun %{name}-lvm-plugin.service
d03ac3
d03ac3
%postun lvm-plugin
d03ac3
%systemd_postun_with_restart %{name}-lvm-plugin.service
d03ac3
d03ac3
%post novolume-plugin
d03ac3
%systemd_post %{name}-novolume-plugin.service
d03ac3
d03ac3
%preun novolume-plugin
d03ac3
%systemd_preun %{name}-novolume-plugin.service
d03ac3
d03ac3
%postun novolume-plugin
d03ac3
%systemd_postun_with_restart %{name}-novolume-plugin.service
d03ac3
d03ac3
%post rhel-push-plugin
d03ac3
%systemd_post rhel-push-plugin.service
d03ac3
d03ac3
%preun rhel-push-plugin
d03ac3
%systemd_preun rhel-push-plugin.service
d03ac3
d03ac3
%postun rhel-push-plugin
d03ac3
%systemd_postun_with_restart rhel-push-plugin.service
d03ac3
10eb08
%posttrans
10eb08
# Install a default docker-storage-setup based on kernel version.
10eb08
if [ ! -e %{_sysconfdir}/sysconfig/%{name}-storage-setup ]; then
10eb08
    # Import /etc/os-release
10eb08
    . %{_sysconfdir}/os-release || :
10eb08
10eb08
    case "$VERSION_ID" in
10eb08
        7.0 | 7.1 | 7.2 | 7.3 | 7.4)
10eb08
           echo "STORAGE_DRIVER=devicemapper" >> %{_sysconfdir}/sysconfig/%{name}-storage-setup || :
10eb08
           echo "CONTAINER_THINPOOL=docker-pool" >> %{_sysconfdir}/sysconfig/%{name}-storage-setup || :
10eb08
        ;;
10eb08
    *)
10eb08
        # 7.5 onwards, switch to overlay2 by default.
10eb08
        echo "STORAGE_DRIVER=overlay2" >> %{_sysconfdir}/sysconfig/%{name}-storage-setup || :
10eb08
    ;;
10eb08
    esac
10eb08
fi
10eb08
d03ac3
#define license tag if not already defined
d03ac3
%{!?_licensedir:%global license %doc}
d03ac3
d03ac3
%files
d03ac3
%license LICENSE*
d03ac3
%doc AUTHORS CHANGELOG.md CONTRIBUTING.md MAINTAINERS NOTICE README*.md
d03ac3
%config(noreplace) %attr(644, root, root) %{_sysconfdir}/sysconfig/%{name}-storage
d03ac3
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}-network
10eb08
# Use ghost to not package default file installed by "make install-docker".
10eb08
# Instead we will install a default based on kernel version in %posttrans.
10eb08
%ghost %{_sysconfdir}/sysconfig/%{name}-storage-setup
d03ac3
%config(noreplace) %{_sysconfdir}/%{name}/daemon.json
10eb08
%config(noreplace) %{_sysconfdir}/%{name}/seccomp.json
d03ac3
%dir %{_sysconfdir}/%{name}
d03ac3
%{_bindir}/%{name}d-current
d03ac3
%{_bindir}/%{name}-storage-setup
d03ac3
%{_bindir}/%{name}-containerd-current
d03ac3
%{_bindir}/%{name}-containerd-shim-current
d03ac3
%{_bindir}/%{name}-ctr-current
d03ac3
%{_sysconfdir}/%{name}/certs.d
d03ac3
%{_mandir}/man1/%{name}*.1.gz
d03ac3
%{_mandir}/man5/*.5.gz
d03ac3
%{_mandir}/man8/%{name}d.8.gz
d03ac3
%{_unitdir}/%{name}.service
d03ac3
%{_unitdir}/%{name}-storage-setup.service
d03ac3
%{_datadir}/bash-completion/completions/%{name}
d03ac3
%dir %attr(711, root, root) %{_sharedstatedir}/%{name}
d03ac3
%{_udevrulesdir}/80-%{name}.rules
d03ac3
%dir %{_datadir}/fish/vendor_completions.d/
d03ac3
%{_datadir}/fish/vendor_completions.d/%{name}.fish
d03ac3
%dir %{_datadir}/vim/vimfiles/doc
d03ac3
%{_datadir}/vim/vimfiles/doc/%{name}file.txt
d03ac3
%dir %{_datadir}/vim/vimfiles/ftdetect
d03ac3
%{_datadir}/vim/vimfiles/ftdetect/%{name}file.vim
d03ac3
%dir %{_datadir}/vim/vimfiles/syntax
d03ac3
%{_datadir}/vim/vimfiles/syntax/%{name}file.vim
d03ac3
%dir %{_datadir}/zsh/site-functions
d03ac3
%{_datadir}/zsh/site-functions/_%{name}
d03ac3
%dir %{_libexecdir}/%{repo}
d03ac3
%{_libexecdir}/%{repo}/%{repo}-runc-current
d03ac3
%{_libexecdir}/%{repo}/%{repo}-proxy-current
10eb08
%{_libexecdir}/%{repo}/%{repo}-init-current
d03ac3
%{_unitdir}/%{name}-cleanup.service
d03ac3
%{_unitdir}/%{name}-cleanup.timer
d03ac3
#%%{_unitdir}/%%{repo}-containerd.service
d03ac3
d03ac3
%if 0%{?with_unit_test}
d03ac3
%files unit-test
d03ac3
%{_sharedstatedir}/%{name}-unit-test/
d03ac3
%endif
d03ac3
d03ac3
%files logrotate
d03ac3
%doc README.%{name}-logrotate
d03ac3
%{_sysconfdir}/cron.daily/%{name}-logrotate
d03ac3
d03ac3
%files common
d03ac3
%doc README-%{name}-common
d03ac3
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
d03ac3
%{_bindir}/%{name}
d03ac3
%{_bindir}/%{name}d
d03ac3
%{_bindir}/%{name}-containerd
d03ac3
%{_bindir}/%{name}-containerd-shim
d03ac3
%dir %{_libexecdir}/%{repo}
d03ac3
%{_usr}/lib/sysctl.d/99-%{name}.conf
d03ac3
d03ac3
%files client
d03ac3
%license LICENSE*
d03ac3
%{_bindir}/%{name}-current
d03ac3
d03ac3
%files novolume-plugin
d03ac3
%license %{repo}-novolume-plugin-%{commit_novolume}/LICENSE
d03ac3
%doc %{repo}-novolume-plugin-%{commit_novolume}/README.md
d03ac3
%{_mandir}/man8/%{repo}-novolume-plugin.8.gz
d03ac3
%{_libexecdir}/%{repo}/%{repo}-novolume-plugin
d03ac3
%{_unitdir}/%{repo}-novolume-plugin.*
d03ac3
d03ac3
%files rhel-push-plugin
d03ac3
%license rhel-push-plugin-%{commit_rhel_push}/LICENSE
d03ac3
%doc rhel-push-plugin-%{commit_rhel_push}/README.md
d03ac3
%{_mandir}/man8/rhel-push-plugin.8.gz
d03ac3
%{_libexecdir}/%{repo}/rhel-push-plugin
d03ac3
%{_unitdir}/rhel-push-plugin.*
d03ac3
d03ac3
%files lvm-plugin
d03ac3
%license %{repo}-lvm-plugin-%{commit_lvm}/LICENSE
d03ac3
%doc %{repo}-lvm-plugin-%{commit_lvm}/README.md
d03ac3
%config(noreplace) %{_sysconfdir}/%{repo}/%{repo}-lvm-plugin
d03ac3
%{_mandir}/man8/%{repo}-lvm-plugin.8.gz
d03ac3
%{_libexecdir}/%{repo}/%{repo}-lvm-plugin
d03ac3
%{_unitdir}/%{repo}-lvm-plugin.*
d03ac3
d03ac3
%files v1.10-migrator
d03ac3
%license v1.10-migrator-%{commit_migrator}/LICENSE.{code,docs}
d03ac3
%doc v1.10-migrator-%{commit_migrator}/{CONTRIBUTING,README}.md
d03ac3
%{_bindir}/%{name}-v1.10-migrator-*
d03ac3
d03ac3
%changelog
6242b9
* Wed Jan 16 2019 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-90.git07f3374
6242b9
- Resolves: #1662700
6242b9
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit b968034
6242b9
6242b9
* Tue Jan 08 2019 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-89.git07f3374
6242b9
- Resolves: #1661622 - fix docker-runc build
6242b9
- use an additional GO_LDFLAGS to keep flags separate from those for tini
6242b9
7ef0f3
* Thu Dec 06 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-88.git07f3374
7ef0f3
- Resolves: #1655214 - build with the correct golang deps
7ef0f3
7ef0f3
* Wed Nov 21 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.13.1-87.git07f3374
7ef0f3
- buildrequires for centos
7ef0f3
7ef0f3
* Tue Nov 20 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.13.1-86.git07f3374
7ef0f3
- build tini without -DMINIMAL
7ef0f3
7ef0f3
* Thu Nov 15 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.13.1-85.git07f3374
7ef0f3
- built docker-runc @projectatomic/docker-1.13.1-rhel commit 290a336
7ef0f3
- Resolves: #1557426
7ef0f3
318924
* Tue Nov 06 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.13.1-84.git07f3374
318924
- built docker-containerd commit 923a387
318924
318924
* Tue Nov 06 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.13.1-83.git07f3374
318924
- built docker @projectatomic/docker-1.13.1-rhel commit 07f3374
318924
- built container-storage-setup commit 413b408
318924
- built docker-lvm-plugin commit 20a1f68
318924
- built docker-containerd commit 296f1f8
318924
- built docker-init commit fec3683
318924
- built libnetwork commit c5d66a0
318924
- built docker-runc @projectatomic/docker-1.13.1-rhel commit 5eda6f6
318924
318924
* Sun Oct 21 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.13.1-82.git9e82212
318924
- Resolves: #1628262
318924
- built docker @projectatomic/docker-1.13.1-rhel commit 9e82212
318924
318924
* Thu Oct 11 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.13.1-81.git8865aaa
318924
- Resolves: #1636244
318924
- built docker @projectatomic/docker-1.13.1-rhel commit 8865aaa
318924
318924
* Tue Oct 09 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.13.1-80.git8633870
318924
- Resolves: #1629733
318924
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 2d876b8
318924
318924
* Tue Oct 09 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.13.1-79.git8633870
318924
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 2d876b8
318924
318924
* Mon Oct 08 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.13.1-78.git8633870
318924
- Resolves: #1592413
318924
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 72e088c
318924
318924
* Mon Oct 08 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.13.1-77.git8633870
318924
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 5382663
318924
318924
* Fri Oct 05 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.13.1-76.git8633870
318924
- Resolves: #1629733
318924
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 13b17fe
318924
7ef673
* Wed Sep 12 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.13.1-75.git8633870
7ef673
- Resolves: #1625457, #1625022
7ef673
- built docker @projectatomic/docker-1.13.1-rhel commit 8633870
7ef673
- built docker-novolume-plugin commit 385ec70
7ef673
- built rhel-push-plugin commit af9107b
7ef673
- built docker-lvm-plugin commit 20a1f68
7ef673
- built docker-runc @projectatomic/docker-1.13.1-rhel commit 5eda6f6
7ef673
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit c769d58
7ef673
- built docker-init commit fec3683
7ef673
- built libnetwork commit a5a6ca3
7ef673
6a1755
* Wed Aug 01 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.13.1-74.git6e3bb8e
6a1755
- Resolves: #1603201
6a1755
- built docker @projectatomic/docker-1.13.1-rhel commit 6e3bb8e
6a1755
- built docker-novolume-plugin commit 385ec70
6a1755
- built rhel-push-plugin commit af9107b
6a1755
- built docker-lvm-plugin commit 20a1f68
6a1755
- built docker-runc @projectatomic/docker-1.13.1-rhel commit 5eda6f6
6a1755
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit c769d58
6a1755
- built docker-init commit fec3683
6a1755
- built libnetwork commit d00ceed
6a1755
6a1755
* Tue Jul 17 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.13.1-73.git6f36bd4
6a1755
- enable debuginfo - no idea why it was removed, but that's wrong
6a1755
6a1755
* Sun Jul 08 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.13.1-72.git6f36bd4
6a1755
- Resolves: #1598581, #1598630 - CVE-2018-10892
6a1755
- built docker @projectatomic/docker-1.13.1-rhel commit 6f36bd4
6a1755
- built docker-novolume-plugin commit 385ec70
6a1755
- built rhel-push-plugin commit af9107b
6a1755
- built docker-lvm-plugin commit 20a1f68
6a1755
- built docker-runc @projectatomic/docker-1.13.1-rhel commit 5eda6f6
6a1755
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit c769d58
6a1755
- built docker-init commit fec3683
6a1755
- built libnetwork commit d00ceed
6a1755
- update comment about registries.conf in /etc/sysconfig/docker
6a1755
  From: Tom Sweeney <tsweeney@redhat.com>  
6a1755
6a1755
* Tue Jun 26 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-71.gitdded712
6a1755
- requires: subscription-manager-rhsm-certificates (centos only)
6a1755
6a1755
* Tue Jun 26 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-70.gitdded712
6a1755
- Resolves: #1595390 - NotifyAccess=main in unitfile
6a1755
6a1755
* Tue Jun 19 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.13.1-69.gitdded712
6a1755
- built docker @projectatomic/docker-1.13.1-rhel commit dded712
6a1755
- built docker-novolume-plugin commit 385ec70
6a1755
- built rhel-push-plugin commit af9107b
6a1755
- built docker-lvm-plugin commit 6675634
6a1755
- built docker-runc @projectatomic/docker-1.13.1-rhel commit 5eda6f6
6a1755
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit c769d58
6a1755
- built docker-init commit fec3683
6a1755
- built libnetwork commit 19279f0
6a1755
acaa69
* Tue Jun 12 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.13.1-68.gitdded712
acaa69
- built docker @projectatomic/docker-1.13.1-rhel commit dded712
acaa69
- built docker-novolume-plugin commit 385ec70
acaa69
- built rhel-push-plugin commit af9107b
acaa69
- built docker-lvm-plugin commit 6675634
acaa69
- built docker-runc @projectatomic/docker-1.13.1-rhel commit 5eda6f6
acaa69
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 296f1f8
acaa69
- built docker-init commit fec3683
acaa69
- built libnetwork commit 19279f0
acaa69
acaa69
* Tue Jun 12 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.13.1-67.gitdded712
acaa69
- built docker @projectatomic/docker-1.13.1-rhel commit dded712
acaa69
- built docker-novolume-plugin commit 385ec70
acaa69
- built rhel-push-plugin commit af9107b
acaa69
- built docker-lvm-plugin commit 6675634
acaa69
- built docker-runc @projectatomic/docker-1.13.1-rhel commit e9c345b
acaa69
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 296f1f8
acaa69
- built docker-init commit fec3683
acaa69
- built libnetwork commit 19279f0
acaa69
acaa69
* Mon Jun 11 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-66.gitdded712
acaa69
- Resolves: #1588773
acaa69
- built docker @projectatomic/docker-1.13.1-rhel commit dded712
acaa69
- built docker-novolume-plugin commit 385ec70
acaa69
- built rhel-push-plugin commit af9107b
acaa69
- built docker-lvm-plugin commit 6675634
acaa69
- built docker-runc @projectatomic/docker-1.13.1-rhel commit a9d1096
acaa69
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 296f1f8
acaa69
- built docker-init commit fec3683
acaa69
- built libnetwork commit 19279f0
acaa69
acaa69
* Wed Jun 06 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.13.1-65.git6c336e4
acaa69
- remove outdated comment about docker_transition_unconfined
acaa69
acaa69
* Mon Jun 04 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.13.1-64.git6c336e4
acaa69
- built docker @projectatomic/docker-1.13.1-rhel commit 6c336e4
acaa69
- built docker-novolume-plugin commit 385ec70
acaa69
- built rhel-push-plugin commit af9107b
acaa69
- built docker-lvm-plugin commit 04caa55
acaa69
- built docker-runc @projectatomic/docker-1.13.1-rhel commit e9c345b
acaa69
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 296f1f8
acaa69
- built docker-init commit 5b117de
acaa69
- built libnetwork commit 5c1218c
acaa69
6a955e
* Mon Apr 30 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.13.1-63.git94f4240
6a955e
- built docker @projectatomic/docker-1.13.1-rhel commit 94f4240
6a955e
6a955e
* Tue Apr 10 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-62.gitc6c9b51
6a955e
- built docker @projectatomic/docker-1.13.1-rhel commit c6c9b51
6a955e
- built docker-novolume-plugin commit 385ec70
6a955e
- built rhel-push-plugin commit af9107b
6a955e
- built docker-lvm-plugin commit 04caa55
6a955e
- built docker-runc @projectatomic/docker-1.13.1-rhel commit e9c345b
6a955e
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 296f1f8
6a955e
- built oci-umount commit 
6a955e
- built docker-init commit 5b117de
6a955e
- built libnetwork commit 5c1218c
6a955e
6a955e
* Fri Apr 06 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-61.git87f2fab
6a955e
- do not change commit id for docker at this stage
6a955e
6a955e
* Fri Apr 06 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-60.git2d99c6f
6a955e
- remove dep on subscription-manager-plugin-container
6a955e
6a955e
* Mon Mar 26 2018 Daniel J Walsh <dwalsh@redhat.com> - 2:1.13.1-59.git2d99c6f
6a955e
- built docker @projectatomic/docker-1.13.1-rhel commit 2d99c6f
6a955e
- built docker-novolume-plugin commit 385ec70
6a955e
- built rhel-push-plugin commit af9107b
6a955e
- built docker-lvm-plugin commit 8647404
6a955e
- built docker-runc @projectatomic/docker-1.13.1-rhel commit e9c345b
6a955e
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 296f1f8
6a955e
- built oci-umount commit 
6a955e
- built docker-init commit 5b117de
6a955e
- built libnetwork commit 2bf6330
6a955e
9ab233
* Mon Mar 19 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-58.git87f2fab
9ab233
- built docker @projectatomic/docker-1.13.1-rhel commit 87f2fab
9ab233
- built docker-novolume-plugin commit 385ec70
9ab233
- built rhel-push-plugin commit af9107b
9ab233
- built docker-lvm-plugin commit 8647404
9ab233
- built docker-runc @projectatomic/docker-1.13.1-rhel commit e9c345b
9ab233
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 296f1f8
9ab233
- built oci-umount commit 
9ab233
- built docker-init commit 5b117de
9ab233
- built libnetwork commit 2bf6330
9ab233
9ab233
* Wed Mar 14 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-57.gitaacbc4b
9ab233
- Resolves: #1489517
9ab233
- built docker @projectatomic/docker-1.13.1-rhel commit aacbc4b
9ab233
- built docker-novolume-plugin commit 385ec70
9ab233
- built rhel-push-plugin commit af9107b
9ab233
- built docker-lvm-plugin commit 8647404
9ab233
- built docker-runc @projectatomic/docker-1.13.1-rhel commit e9c345b
9ab233
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 296f1f8
9ab233
- built docker-init commit 5b117de
9ab233
- built libnetwork commit 8892d75
9ab233
9ab233
* Sat Mar 10 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-56.git774336d
9ab233
- Resolves: #1485832
9ab233
- bump deps on container-selinux and oci-umount to the latest shipped
9ab233
9ab233
* Tue Feb 20 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-55.rhel75.git774336d
9ab233
- Re: #1540540
10eb08
- built docker @projectatomic/docker-1.13.1-rhel commit 774336d
10eb08
- built docker-novolume-plugin commit 385ec70
10eb08
- built rhel-push-plugin commit af9107b
10eb08
- built docker-lvm-plugin commit 8647404
10eb08
- built docker-runc @projectatomic/docker-1.13.1-rhel commit e9c345b
10eb08
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 296f1f8
10eb08
- built docker-init commit 5b117de
10eb08
- built libnetwork commit 14db3c4
10eb08
9ab233
* Mon Feb 12 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-54.rhel75.gitce62987
10eb08
- built docker @projectatomic/docker-1.13.1-rhel commit ce62987
10eb08
- built docker-novolume-plugin commit 385ec70
10eb08
- built rhel-push-plugin commit af9107b
10eb08
- built docker-lvm-plugin commit 8647404
10eb08
- built docker-runc @projectatomic/docker-1.13.1-rhel commit e9c345b
10eb08
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 296f1f8
10eb08
- built docker-init commit 0effd37
10eb08
- built libnetwork commit 1ba8194
10eb08
9ab233
* Tue Feb 06 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.13.1-50.gitec9911e
9ab233
- Requires: container-storage-setup >= 0.9.0-1
9ab233
9ab233
* Tue Feb 06 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-49.gitec9911e
9ab233
- Resolves: #1441743 - remove MountFlags=slave from unitfile
9ab233
10eb08
* Mon Feb 05 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-48.gitec9911e
10eb08
- Resolves: #1536726 - bump skopeo-containers dependency
10eb08
10eb08
* Mon Feb 05 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-47.gitec9911e
10eb08
- oci-register-machine >= 1:0-5.13 (RE: #1542112)
10eb08
10eb08
* Mon Feb 05 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-46.gitec9911e
10eb08
- Resolves: #1542112 - depend on oci-register-machine (disabled in config file)
10eb08
- revert removal of oci-register-machine done in 2:1.13.1-1
10eb08
10eb08
* Thu Feb 01 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-45.gitec9911e
10eb08
- c-s-s >= 0.7.0-1
10eb08
10eb08
* Thu Feb 01 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-44.gitec9911e
10eb08
- built docker @projectatomic/docker-1.13.1-rhel commit ec9911e
10eb08
- built docker-novolume-plugin commit 385ec70
10eb08
- built rhel-push-plugin commit af9107b
10eb08
- built docker-lvm-plugin commit 8647404
10eb08
- built docker-runc @projectatomic/docker-1.13.1-rhel commit 518736e
10eb08
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 296f1f8
10eb08
- built docker-init commit 0effd37
10eb08
- built libnetwork commit 20dd462
10eb08
10eb08
* Tue Jan 30 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-43.gitec9911e
10eb08
- built docker @projectatomic/docker-1.13.1-rhel commit ec9911e
10eb08
- built docker-novolume-plugin commit 385ec70
10eb08
- built rhel-push-plugin commit af9107b
10eb08
- built docker-lvm-plugin commit 8647404
10eb08
- built docker-runc @projectatomic/docker-1.13.1-rhel commit 518736e
10eb08
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 296f1f8
10eb08
- built docker-init commit 0effd37
10eb08
- built libnetwork commit 20dd462
10eb08
10eb08
* Wed Jan 24 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.13.1-1.gitddee18e
10eb08
- built docker @projectatomic/docker-1.13.1-rhel commit ddee18e
10eb08
- built docker-novolume-plugin commit 385ec70
10eb08
- built rhel-push-plugin commit af9107b
10eb08
- built docker-lvm-plugin commit 8647404
10eb08
- built docker-runc @projectatomic/docker-1.13.1-rhel commit 518736e
10eb08
- built docker-containerd @projectatomic/docker-1.13.1-rhel commit 296f1f8
10eb08
- built docker-init commit 0effd37
10eb08
- built libnetwork commit 5ab4ab8
10eb08
bc8035
* Wed Dec 13 2017 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.12.6-71.git3e8e77d
bc8035
- rebased to 3e8e77dcb88db0530c839b249bea7d75f9cd01d7
bc8035
- https://bugzilla.redhat.com/show_bug.cgi?id=1518519
bc8035
bc8035
* Tue Dec 12 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-70.gitec8512b
bc8035
- Resolves: #1524634 - start daemon after registries.service
bc8035
bc8035
* Wed Nov 22 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-69.gitec8512b
bc8035
- use oci-register-machine >= 1:0-3.14
bc8035
d03ac3
* Thu Nov 16 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-68.gitec8512b
d03ac3
- revert some docker.sysconfig deletions wrongly done in commit 3b003db
d03ac3
d03ac3
* Thu Nov 09 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-67.gitec8512b
d03ac3
- built docker @projectatomic/docker-1.12.6 commit ec8512b
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit c5d3116
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit fa8fb3d
d03ac3
d03ac3
* Thu Nov 09 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-66.gitd6f7b83
d03ac3
- built docker @projectatomic/docker-1.12.6 commit d6f7b83
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit c5d3116
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit fa8fb3d
d03ac3
d03ac3
* Tue Nov 07 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-65.git61aa37c
d03ac3
- adjust sources file
d03ac3
d03ac3
* Fri Nov 03 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-64.git61aa37c
d03ac3
- Resolves: #1498553
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 61aa37c
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit c5d3116
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit fa8fb3d
d03ac3
d03ac3
* Thu Nov 02 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-63.git6f58874
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 6f58874
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit c5d3116
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit fa8fb3d
d03ac3
d03ac3
* Thu Oct 19 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-62.git85d7426
d03ac3
- rhel subscription secrets info moved to skopeo-containers
d03ac3
- require skopeo-containers >= 0.1.24-3
d03ac3
d03ac3
* Tue Sep 26 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-61.git85d7426
d03ac3
- reverted sources, the same file name should not have a different name
d03ac3
d03ac3
* Tue Sep 26 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-60.git85d7426
d03ac3
- Resolves: #1475768
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 85d7426
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit c5d3116
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit fa8fb3d
d03ac3
d03ac3
* Fri Sep 22 2017 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.12.6-59.git85d7426
d03ac3
- reverted sources, the same file name should not have a different hash
d03ac3
d03ac3
* Thu Sep 21 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-58.git85d7426
d03ac3
- Resolves: #1455071
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 85d7426
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit c5d3116
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit fa8fb3d
d03ac3
d03ac3
* Wed Sep 20 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-57.git85d7426
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 85d7426
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit 31a9f6e
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit fa8fb3d
d03ac3
d03ac3
* Mon Sep 18 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-56.git638a809
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 638a809
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit 31a9f6e
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit fa8fb3d
d03ac3
- built oci-umount commit 21c84aa
d03ac3
d03ac3
* Thu Aug 24 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-55.gitc4618fb
d03ac3
- Resolves: #1477787
d03ac3
- built oci-umount commit 6f0317a
d03ac3
d03ac3
* Tue Aug 22 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-54.gitc4618fb
d03ac3
- built oci-umount commit 8377044
d03ac3
- ensure diff between 1.12.6-51 and latest is only container-selinux NVR
d03ac3
d03ac3
* Tue Aug 22 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-53.gitc4618fb
d03ac3
- Resolves: #1484146
d03ac3
- need container-selinux >= 2:2.21-2
d03ac3
d03ac3
* Tue Aug 15 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-52.gitc4618fb
d03ac3
- built docker @projectatomic/docker-1.12.6 commit c4618fb
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit 31a9f6e
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit fa8fb3d
d03ac3
- built oci-umount commit 299e781
d03ac3
d03ac3
* Tue Aug 08 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-51.gitc4618fb
d03ac3
- Resolves: #1472974
d03ac3
- built docker @projectatomic/docker-1.12.6 commit c4618fb
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit 31a9f6e
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit fa8fb3d
d03ac3
- built oci-umount commit 8377044
d03ac3
d03ac3
* Wed Aug 02 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-50.git0fdc778
d03ac3
- Resolves: #1428142, #1454371, #1454420, #1456184, #1470261, #1430905
d03ac3
- Resolves: #1446526, #1450221, #1451474, #1459268, #1461024, #1461071
d03ac3
- Resolves: #1464188, #1466242, #1464933, #1470640
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 0fdc778
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit 31a9f6e
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit fa8fb3d
d03ac3
- built oci-umount commit 8377044
d03ac3
d03ac3
* Tue Jul 25 2017 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.12.6-49.git0fdc778
d03ac3
- changed permissions of /var/lib/docker and /etc/sysconfig/docker-storage, #1473785 
d03ac3
d03ac3
* Thu Jul 20 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-48.git0fdc778
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 0fdc778
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit 79c3939
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit fa8fb3d
d03ac3
- built oci-umount commit 8377044
d03ac3
d03ac3
* Wed Jul 19 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-47.git0fdc778
d03ac3
- Resolves: #1471218
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 0fdc778
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit 79c3939
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit fa8fb3d
d03ac3
- built oci-umount commit 4f960ae
d03ac3
d03ac3
* Wed Jul 19 2017 fkluknav <fkluknav@redhat.com> - 2:1.12.6-46.git1680dd8
d03ac3
- rebased runc to 79c3939053c870fbb4de5484d98640d5ba028ef4, #1471803
d03ac3
d03ac3
* Wed Jul 12 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-45.git1680dd8
d03ac3
- Resolves: #1467350, #1463824, #1460931, #1446635, #1436731, #1418173
d03ac3
- Resolves: #1413536, #1412881, #1389545, #1366803, #1264971
d03ac3
- add bzs fixed so far ^
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 1680dd8
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit f572169
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit fa8fb3d
d03ac3
- built oci-umount commit afbf716
d03ac3
d03ac3
* Tue Jul 11 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-44.gitf55a118
d03ac3
- Resolves: #1454371 - depend on subscription-manager-plugin-container
d03ac3
d03ac3
* Tue Jul 11 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-43.gitf55a118
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 1680dd8
d03ac3
- built oci-umount commit afbf716
d03ac3
d03ac3
* Tue Jul 11 2017 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:1.12.6-42.1.gitf55a118
d03ac3
- /etc/docker/certs.d/registry.access.redhat.com/redhat-ca.crt symlink added, #1428142
d03ac3
d03ac3
* Mon Jul 03 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-41.1.gitf55a118
d03ac3
- Resolves: #1468249, #1468244
d03ac3
- record exact commits rebased to in previous build
d03ac3
- built oci-umount commit c134575
d03ac3
d03ac3
* Mon Jul 03 2017 fkluknav <fkluknav@redhat.com> - 2:1.12.6-40.1.gitf55a118
d03ac3
- rebased docker and containerd
d03ac3
- built docker @projectatomic/docker-1.12.6 commit f55a118
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit fa8fb3d 
d03ac3
d03ac3
* Wed Jun 14 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-39.1.git6ffd653
d03ac3
- enable all arches
d03ac3
d03ac3
* Tue Jun 13 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-38.1.git6ffd653
d03ac3
- disable s390x again
d03ac3
d03ac3
* Tue Jun 13 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-37.1.git6ffd653
d03ac3
- enable all arches again
d03ac3
d03ac3
* Tue Jun 13 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-36.1.git6ffd653
d03ac3
- disable s390x temporarily because of indefinite wait time on brew
d03ac3
d03ac3
* Tue Jun 13 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-35.1.git6ffd653
d03ac3
- Resolves: #1460266, #1460326
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 6ffd653
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit f572169
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit d4e2f9d
d03ac3
d03ac3
* Thu Jun 08 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-34.1.git3a6eaeb
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 3a6eaeb
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit af9107b
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit f572169
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit d4e2f9d
d03ac3
d03ac3
* Thu Apr 27 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-18.1.gitc14458a
d03ac3
- Resolves: #1400255 - enable criu
d03ac3
- built docker @projectatomic/docker-1.12.6 commit c14458a
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit 70653ed
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit 81b2542
d03ac3
- built docker-containerd @projectatomic/docker-1.12.6 commit f3f35e9
d03ac3
d03ac3
* Fri Mar 24 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-17.1
d03ac3
- rebuild for all available arches for 7.4 Extras
d03ac3
d03ac3
* Tue Mar 21 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-16
d03ac3
- require oci-register-machine >= 1:0-3.10
d03ac3
d03ac3
* Mon Mar 20 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-15
d03ac3
- require: container-selinux >= 2:2.10-2 (RE: #1433223)
d03ac3
- Resolves: #1427332 - container-selinux removal should remove docker as well
d03ac3
- move cleanup unitfiles to docker package
d03ac3
- remove /etc/docker/daemon.json
d03ac3
d03ac3
* Thu Mar 16 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-14
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 3a094bd
d03ac3
- built v1.10-migrator commit c417a6a
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit 70653ed
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @docker-1.12.6 commit 81b2542
d03ac3
- built docker-containerd @projectatomic/docker-1.12.4 commit 471f03c
d03ac3
d03ac3
* Fri Mar 03 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-13
d03ac3
- move docker-cleanup unitfiles to docker-common
d03ac3
d03ac3
* Thu Mar 02 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-12
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 3a094bd
d03ac3
- built v1.10-migrator commit c417a6a
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit 70653ed
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit 81b2542
d03ac3
- built docker-containerd @projectatomic/docker-1.12.4 commit 471f03c
d03ac3
d03ac3
* Thu Feb 23 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-11
d03ac3
- Resolves: #1426290
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 96d83a5
d03ac3
d03ac3
* Tue Feb 21 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-10
d03ac3
- Resolves: #1360892
d03ac3
- From: Luwen Su <lsu@redhat.com>
d03ac3
d03ac3
* Tue Feb 21 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-9
d03ac3
- Resolves: #1420147
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 7f3e2af
d03ac3
- require container-selinux >= 2:2.9-4
d03ac3
d03ac3
* Mon Feb 20 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-8
d03ac3
- bump to -8 for consistent nvr with docker-latest
d03ac3
d03ac3
* Mon Feb 20 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-7
d03ac3
- require container-selinux >= 2:2.9-3
d03ac3
d03ac3
* Thu Feb 16 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-6
d03ac3
- Resolves: #1415850
d03ac3
d03ac3
* Wed Feb 15 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-5
d03ac3
- Resolves: #1421714
d03ac3
- built docker @projectatomic/docker-1.12.6 commit ddff1c3
d03ac3
- built v1.10-migrator commit c417a6a
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit 70653ed
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc @projectatomic/docker-1.12.6 commit 81b2542
d03ac3
- built docker-containerd @projectatomic/docker-1.12.4 commit 471f03c
d03ac3
d03ac3
* Tue Feb 14 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-4
d03ac3
- Resolves: #1360892 - handle plugin restart
d03ac3
- From: Dan Walsh <dwalsh@redhat.com>
d03ac3
d03ac3
* Mon Feb 13 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-3
d03ac3
- Resolves: #1420591
d03ac3
- requires: container-selinux >= 2:2.9-1
d03ac3
d03ac3
* Tue Feb 07 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-2
d03ac3
- built docker @projectatomic/docker-1.12.6 commit dfc4aea
d03ac3
- built v1.10-migrator commit c417a6a
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit 70653ed
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc commit 81b2542
d03ac3
- built docker-containerd commit 471f03c
d03ac3
d03ac3
* Wed Jan 18 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.6-1
d03ac3
- Resolves: #1413535 - container-selinux should obsolete docker-selinux
d03ac3
- Resolves: #1411980 - honor the --default-runtime flag
d03ac3
- Resolves: #1414250 - /usr/bin/dockerd execs dockerd-[current|latest]
d03ac3
- Resolves: #1414436 - enable --restart=on-failure
d03ac3
- Resolves: #1381929 - update manpages for '--format' example
d03ac3
- built docker @projectatomic/docker-1.12.6 commit 037a2f5
d03ac3
- built container-selinux commit 1169298
d03ac3
- built d-s-s commit f7a3746
d03ac3
- built v1.10-migrator commit c417a6a
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit eb9e6be
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc commit 81b2542
d03ac3
- built docker-containerd commit 471f03c
d03ac3
d03ac3
* Thu Jan 12 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.5-15
d03ac3
- use oci-systemd-hook >= 1:0.1.4-9
d03ac3
d03ac3
* Wed Jan 11 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.5-14
d03ac3
- reference correct container-selinux commit id (58209b8)
d03ac3
in 2:1.12.5-13 changelog
d03ac3
d03ac3
* Wed Jan 11 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.5-13
d03ac3
- Resolves: #1412385 - SELinux issues
d03ac3
- built container-selinux origin/RHEL-1.12 commit 58209b8
d03ac3
d03ac3
* Tue Jan 10 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.5-12
d03ac3
- relabel docker-latest unitfiles as well
d03ac3
d03ac3
* Tue Jan 10 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.5-11
d03ac3
- enforce min version-release for oci-register-machine and oci-systemd-hook
d03ac3
d03ac3
* Tue Jan 10 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.5-10
d03ac3
- Resolves: #1409706 - *CVE-2016-9962* - set init processes as non-dumpable,
d03ac3
runc patch from Michael Crosby <crosbymichael@gmail.com>
d03ac3
d03ac3
* Thu Jan 05 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.5-9
d03ac3
- Resolves: #1403264 - friendlier error message if no /usr/bin/docker-current
d03ac3
or /usr/bin/docker-latest found.
d03ac3
- Resolves: #1410434 - fix panic on push
d03ac3
- built docker @projectatomic/docker-1.12.5 commit 047e51b
d03ac3
- built container-selinux commit a85092b
d03ac3
- built d-s-s commit 6709fe6
d03ac3
- built v1.10-migrator commit c417a6a
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit eb9e6be
d03ac3
- built docker-lvm-plugin commit 8647404
d03ac3
- built docker-runc commit b8dbc3b
d03ac3
- built docker-containerd commit 471f03c
d03ac3
d03ac3
* Wed Dec 21 2016 Dan Walsh <dwalsh@redhat.com> - 2:1.12.5-8
d03ac3
- Fix handling of container-selinux update and relabel
d03ac3
- Resolves: #1404372, #1395401, #1368092, #1405464, #1400372, #1381929,
d03ac3
- Resolves: #1351609, #1404298, #1368426, #1399398, #1244300, #1374514,
d03ac3
- Resolves: #1400228, #1405306, #1405888, #1403270
d03ac3
d03ac3
* Tue Dec 20 2016 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.5-7
d03ac3
- remove DOCKER_PROXY_BINARY env var
d03ac3
d03ac3
* Tue Dec 20 2016 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.5-6
d03ac3
- version-release consistent with docker-latest
d03ac3
d03ac3
* Tue Dec 20 2016 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.5-5
d03ac3
- Resolves: #1406460 - add --userland-proxy-path option to unitfile
d03ac3
- Resolves: #1406446 - add --signature-verification=false to $OPTIONS in
d03ac3
/etc/sysconfig/docker
d03ac3
d03ac3
* Mon Dec 19 2016 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.5-4
d03ac3
- Resolves: #1405989
d03ac3
- From: Jan Pazdziora <jpazdziora@redhat.com>
d03ac3
d03ac3
* Fri Dec 16 2016 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.5-3
d03ac3
- built docker @projectatomic/docker-1.12.5 commit 6009905
d03ac3
- built container-selinux commit a85092b
d03ac3
- built d-s-s commit b7175b4
d03ac3
- built v1.10-migrator commit c417a6a
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit eb9e6be
d03ac3
- built docker-lvm-plugin commit d918081
d03ac3
- built docker-runc commit b8dbc3b
d03ac3
- built docker-containerd commit 471f03c
d03ac3
d03ac3
* Fri Dec 16 2016 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.5-2
d03ac3
- built docker @projectatomic/docker-1.12.5 commit 6009905
d03ac3
- built container-selinux commit a85092b
d03ac3
- built d-s-s commit b7175b4
d03ac3
- built v1.10-migrator commit c417a6a
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit eb9e6be
d03ac3
- built docker-lvm-plugin commit d918081
d03ac3
- built docker-runc commit b8dbc3b
d03ac3
- built docker-containerd commit 471f03c
d03ac3
d03ac3
* Fri Dec 16 2016 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.5-1
d03ac3
- built docker @projectatomic/docker-1.12.5 commit 6009905
d03ac3
- built container-selinux commit a85092b
d03ac3
- built d-s-s commit b7175b4
d03ac3
- built v1.10-migrator commit c417a6a
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit eb9e6be
d03ac3
- built docker-lvm-plugin commit d918081
d03ac3
- built docker-runc commit b8dbc3b
d03ac3
- built docker-containerd commit 471f03c
d03ac3
d03ac3
* Tue Dec 13 2016 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.4-3
d03ac3
- docker requires docker-client
d03ac3
d03ac3
* Tue Dec 13 2016 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.4-2
d03ac3
- built docker @projectatomic/docker-1.12.4 commit 1b5971a
d03ac3
- built container-selinux commit cc14935
d03ac3
- built d-s-s commit 0d53efa
d03ac3
- built v1.10-migrator commit c417a6a
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit eb9e6be
d03ac3
- built docker-lvm-plugin commit d918081
d03ac3
- built docker-runc commit b8dbc3b
d03ac3
- built docker-containerd commit 471f03c
d03ac3
d03ac3
* Tue Dec 13 2016 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.4-1
d03ac3
- Resolves: #1403264 - packaging fixes (from runcom@redhat.com)
d03ac3
- Resolves: #1403843 - disable any existing gear modules (from
d03ac3
dwalsh@redhat.com)
d03ac3
- built docker @projectatomic/docker-1.12.4 commit 1b5971a
d03ac3
- built container-selinux commit cc14935
d03ac3
- built d-s-s commit 0d53efa
d03ac3
- built v1.10-migrator commit c417a6a
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit eb9e6be
d03ac3
- built docker-lvm-plugin commit d918081
d03ac3
- built docker-runc commit b8dbc3b
d03ac3
- built docker-containerd commit 471f03c
d03ac3
d03ac3
* Mon Dec 12 2016 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.3-11
d03ac3
- Resolves: #1403370 - fix relabeling of /usr/bin/docker*
d03ac3
- built docker @projectatomic/docker-1.12.3 commit 0423d89
d03ac3
- built container-selinux commit 554f844
d03ac3
- built d-s-s commit 0d53efa
d03ac3
- built v1.10-migrator commit c417a6a
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit eb9e6be
d03ac3
- built docker-lvm-plugin commit d918081
d03ac3
- built docker-runc commit b8dbc3b
d03ac3
- built docker-containerd commit 9f45393
d03ac3
d03ac3
* Thu Dec 08 2016 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.3-10
d03ac3
- move docker-proxy to /usr/libexec/docker/
d03ac3
- append '-current' to files inside /usr/libexec/docker/
d03ac3
d03ac3
* Wed Dec 07 2016 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.12.3-9
d03ac3
- Resolves: #1402677 - create a docker-client subpackage
d03ac3
- built docker @projectatomic/docker-1.12.3 commit 3abc089
d03ac3
- built container-selinux commit bdad20c
d03ac3
- built d-s-s commit 0d53efa
d03ac3
- built v1.10-migrator commit c417a6a
d03ac3
- built docker-novolume-plugin commit 385ec70
d03ac3
- built rhel-push-plugin commit eb9e6be
d03ac3
- built docker-lvm-plugin commit d918081
d03ac3
- built docker-runc commit b8dbc3b
d03ac3
- built docker-containerd commit 9f45393
d03ac3
d03ac3
* Sat Nov 19 2016 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.10.3-59
d03ac3
- correct typo
d03ac3
d03ac3
* Fri Nov 18 2016 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.10.3-58
d03ac3
- Resolves: #1382997 - correctly remove docker-selinux policies when the
d03ac3
subpackage is removed, remove docker policy if it is installed at 100, 200 or
d03ac3
400 levels
d03ac3
- Resolves: #1346206 - do not override DOCKER_CERT_PATH if it's already set
d03ac3
- Resolves: #1389328, #1393443 - rhel-push-plugin fixes
d03ac3
- bump Epoch to 2, since the recent 1.12.3 was already on Epoch: 1
d03ac3
- move docker-selinux to container-selinux   
d03ac3
- built rhel-push-plugin commit eb9e6be
d03ac3
- built container-selinux origin/RHEL-1.12 commit 98617f3
d03ac3
- built dss commit 0d53efa
d03ac3
d03ac3
* Thu Oct 20 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-57
d03ac3
- Resolves: #1385641 - additional policy rules for RHEL rpms
d03ac3
d03ac3
* Tue Oct 18 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-56
d03ac3
- Resolves: #1380474
d03ac3
- built docker projectatomic/rhel7-1.10.3 commit 30bf0b8
d03ac3
d03ac3
* Mon Sep 19 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-55
d03ac3
- Resolves: #1376950, #1376953
d03ac3
- built docker-novolume-plugin commit c521254
d03ac3
- built rhel-push-plugin commit d89861d
d03ac3
d03ac3
* Mon Sep 12 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-54
d03ac3
- Resolves: #1374265
d03ac3
- built commit 25e0f0e
d03ac3
d03ac3
* Wed Sep 07 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-53
d03ac3
- Resolves: #1373952 - typebounds can't be used in rhel yet
d03ac3
- re-add v1.10-migrator
d03ac3
- built docker-selinux commit 583a67f
d03ac3
- built v1.10-migrator commit c417a6a
d03ac3
d03ac3
* Tue Sep 06 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-52
d03ac3
- Resolves: #1370935 - fs_rw_nsfs_files broken in selinux-policy, included in
d03ac3
docker-selinux
d03ac3
- built docker-selinux commit 3d17c3f
d03ac3
d03ac3
* Tue Sep 06 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-51
d03ac3
- Resolves: #1370935 - remove label for kubelet directory from docker-selinux
d03ac3
- Resolves: #1357121 - install cron job to cleanup dead containers
d03ac3
- Resolves: #1303123, #1330141, #1336857, #1346185, #1353626, #1355783,
d03ac3
- Resolves: #1362611, #1370935
d03ac3
- built docker projectatomic/rhel7-1.10.3 commit ef55c88
d03ac3
- built docker-selinux commit edbbfc9
d03ac3
- built docker-lvm-plugin commit bc03b53
d03ac3
- built d-s-s commit 95194cb
d03ac3
d03ac3
* Wed Aug 31 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-50
d03ac3
- built docker-selinux commit 45be230
d03ac3
d03ac3
* Fri Aug 26 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-49
d03ac3
- built docker-selinux commit dba8e03
d03ac3
- update oci-* dependency NVRs
d03ac3
d03ac3
* Tue Aug 16 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-48
d03ac3
- built docker projectatomic/rhel7-1.10.3 commit f9d4a2c
d03ac3
- built docker-selinux commit 69140d6
d03ac3
- built d-s-s commit 338cf62
d03ac3
- built rhel-push-plugin commit 4eaaf33
d03ac3
- built docker-lvm-plugin commit 532c7ad
d03ac3
d03ac3
* Thu Jun 23 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-47
d03ac3
- 46.x release tag used for 7.2.6, use 47 and up for 7.3
d03ac3
d03ac3
* Thu Jun 23 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-45
d03ac3
- built docker-selinux commit 7419650
d03ac3
- use selinux-policy >= 3.13.1-64 [rhel-7.3]
d03ac3
d03ac3
* Fri Jun 17 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-44
d03ac3
- Resolves: #1311544 (bz added, no other change since -43)
d03ac3
d03ac3
* Fri Jun 17 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-43
d03ac3
- add MountFlags=slave to unitfile
d03ac3
d03ac3
* Mon Jun 13 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-42
d03ac3
- Resolves: #1344448
d03ac3
- built rhel-push-plugin commit 1a0046f
d03ac3
d03ac3
* Mon Jun 13 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-41
d03ac3
- Resolves: #1341171 - docker should require oci-register-machine and oci-systemd-hook
d03ac3
- Resolves: #1342274 - docker doesn't own /etc/docker/docker-lvm-plugin
d03ac3
d03ac3
* Thu Jun 09 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-40
d03ac3
- bump release tag to make it consistent with docker-latest
d03ac3
 
d03ac3
* Thu Jun 09 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-39
d03ac3
- bump release tag to make it consistent with docker-latest
d03ac3
d03ac3
* Thu Jun 09 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-38
d03ac3
- built docker projectatomic/rhel7-1.10.3 commit a46c31a
d03ac3
- fixes a panic
d03ac3
d03ac3
* Wed Jun 08 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-37
d03ac3
- migrator doesn't require docker at runtime either
d03ac3
- From: Jonathan Lebon <jlebon@redhat.com>
d03ac3
d03ac3
* Wed Jun 08 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-36
d03ac3
- Do not run migrator script via %%triggerin
d03ac3
- If the docker daemon is already running prior, the new daemon will be
d03ac3
restarted which will handle migration
d03ac3
- Remove migrator subpackage from docker runtime deps
d03ac3
- From: Jonathan Lebon <jlebon@redhat.com>
d03ac3
d03ac3
* Wed Jun 08 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-35
d03ac3
- Resolves: #1338894, #1324150, #1343702, #1339146, #1304808, #1286787,
d03ac3
#1323819, #1283891, #1339164, #1328917, #1317096,
d03ac3
#1318690, #1309900, #1245325
d03ac3
- same as previous build, bugs referenced
d03ac3
d03ac3
* Tue Jun 07 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-34
d03ac3
- Patch0 in previous build has been merged in projectatomic/docker rhel7-1.10.3 branch
d03ac3
- built docker projectatomic/rhel7-1.10.3 commit 6baafd8
d03ac3
- define docker_branch macro to be used in %%check
d03ac3
d03ac3
* Tue Jun 07 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-33
d03ac3
- Patch0 used in previous build updated
d03ac3
d03ac3
* Mon Jun 06 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-32
d03ac3
- Resolves: #1341906 - use RWMutex to acces container store
d03ac3
d03ac3
* Thu Jun 02 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-31
d03ac3
- Resolves: #1342274 - update file listings to avoid file ownerships by
d03ac3
multiple subpackages
d03ac3
- update docker.sysconfig to include --log-driver=journald in OPTIONS
d03ac3
d03ac3
* Thu Jun 02 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-30
d03ac3
- Resolves: #1342149 - v1.10-migrator shipped separately in both docker and
d03ac3
docker-latest
d03ac3
- The v1.10-migrator subpackage in docker-latest has executables prepended 
d03ac3
with 'docker-latest-', while there's no change in the ones shipped with 
d03ac3
docker (RE: #1342149)
d03ac3
d03ac3
* Thu Jun 02 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-29
d03ac3
- Resolves: #1342149 - docker-v1.10-migrator obsoletes
d03ac3
docker-latest-v1.10-migrator
d03ac3
d03ac3
* Wed Jun 01 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-28
d03ac3
- Resolves: #1341789 - update unitfile to use systemd for cgroups
d03ac3
d03ac3
* Wed Jun 01 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-27
d03ac3
- Resolves: #1341328 - include v1.10-migrator-helper script in the migrator
d03ac3
subpackage
d03ac3
- Resolves: #1335635 - solve log spam issues
d03ac3
- built docker projectatomic/rhel7-1.10.3 commit 4779225
d03ac3
- built dss commit 194eca2
d03ac3
d03ac3
* Sat May 14 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-26
d03ac3
- Resolves: #1341171 - add oci-register-machine and oci-systemd-hook subpackages
d03ac3
- built oci-register-machine commit 7d4ce65
d03ac3
- built oci-systemd-hook commit 41491a3
d03ac3
d03ac3
* Sat May 14 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-25
d03ac3
- docker requires docker-rhel-push-plugin
d03ac3
d03ac3
* Sat May 14 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-24
d03ac3
- docker unitfile updates to include rhel-push-plugin
d03ac3
d03ac3
* Tue May 03 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-23
d03ac3
- bump release tag to obsolete packages in docker-latest
d03ac3
d03ac3
* Tue May 03 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.3-1
d03ac3
- Resolves: #1335597 - rebase to v1.10.3 + rh patches
d03ac3
- add subpackages for novolume-plugin, lvm-plugin, rhel-push-plugin, v1.10-migrator
d03ac3
- BR: libseccomp-devel
d03ac3
- built docker @projectatomic/rhel7-1.10.3 commit 86bbf84
d03ac3
- built docker-selinux @origin/rhel7-1.10 commit 032bcda
d03ac3
- built d-s-s commit df2af94
d03ac3
- built forward-journald commit 77e02a9
d03ac3
- built novolume-plugin commit 7715854
d03ac3
- built rhel-push-plugin commit 904c0ca
d03ac3
- built lvm-plugin commit 3253f53
d03ac3
- built v1.10-migrator commit c417a6a
d03ac3
d03ac3
* Tue May 03 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-40
d03ac3
- Resolves: #1332592 - requires docker-common = version-release
d03ac3
- From: Ed Santiago <santiago@redhat.com>
d03ac3
d03ac3
* Tue May 03 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-39
d03ac3
- Resolves: #1332016, #1329743
d03ac3
- built docker projectatomic/rhel7-1.9 commit ab77bde
d03ac3
- built docker-selinux origin/rhel-1.10 commit 032bcda
d03ac3
d03ac3
* Wed Apr 27 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-38
d03ac3
- Resolves: #1331007 - fix selinux labels for new docker execs names
d03ac3
- built docker-selinux commit#501ea4c
d03ac3
d03ac3
* Tue Apr 26 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-37
d03ac3
- Resolves: #1330622 - /usr/bin/docker handles docker/docker-latest
d03ac3
conditions
d03ac3
- Resolves: #1330290 - d-s-s: do not pass devices which have 'creation of
d03ac3
device node' in progress
d03ac3
- built d-s-s commit#df2af94
d03ac3
d03ac3
* Tue Apr 26 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-36
d03ac3
- Resolves: #1330622 - don't allow $DOCKERBINARY==/usr/bin/docker
d03ac3
d03ac3
* Tue Apr 26 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-35
d03ac3
- #1330595 fix From: Ed Santiago <santiago@redhat.com>
d03ac3
d03ac3
* Tue Apr 26 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-34
d03ac3
- Resolves: #1330595
d03ac3
- use correct exec path for docker-current in unitfile
d03ac3
d03ac3
* Mon Apr 25 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-33
d03ac3
- Resolves: #1328219 - include docker-common subpackage
d03ac3
- docker-common is a runtime requirement for both docker and docker-latest
d03ac3
d03ac3
* Thu Apr 21 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-32
d03ac3
- update upstream URL
d03ac3
- Resolves: #1329423 - skip /dev setup in container when it's bind mounted in
d03ac3
- Resolves: #1329452 - CVE-2016-3697
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#639e055
d03ac3
- built docker-selinux commit#39c092c
d03ac3
- built d-s-s commit#04a3847
d03ac3
- built forward-journald commit#77e02a9
d03ac3
d03ac3
* Thu Apr 21 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-31
d03ac3
- test-fix for https://github.com/openshift/openshift-ansible/issues/1779
d03ac3
d03ac3
* Mon Apr 18 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-30
d03ac3
- Bump release - previous git log had 2 docker commit values
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#a1c9058
d03ac3
- built docker-selinux commit#39c092c
d03ac3
- built d-s-s commit#04a3847
d03ac3
- built forward-journald commit#77e02a9
d03ac3
d03ac3
* Mon Apr 18 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-29
d03ac3
- Resolves: #1283718, #1277982, #1126555 #1134424, #1186066,
d03ac3
    #1228777, #1255060, #1256832, #1261565, #1264562, #1266307,
d03ac3
    #1266525 #1266902 #1268059 #1272143 #1277982 #1283718 #1300033,
d03ac3
    #1303110 #1309739 #1316651 #1319783
d03ac3
- remove conflicts with atomic-openshift and origin
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#a1c9058
d03ac3
- built docker-selinux commit#39c092c
d03ac3
- built d-s-s commit#04a3847
d03ac3
- built forward-journald commit#77e02a9
d03ac3
- do not even build dockerinit
d03ac3
d03ac3
* Sun Apr 10 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-28
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#b795b73
d03ac3
- built docker-selinux commit#39c092c
d03ac3
- built d-s-s commit#ac50cee
d03ac3
- built docker-utils commit#b851c03
d03ac3
- built v1.10-migrator commit#c417a6a
d03ac3
- built forward-journald commit#77e02a9
d03ac3
d03ac3
* Sun Apr 10 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-27
d03ac3
- split docker-utils into a subpackage so docker-latest can reuse it.
d03ac3
- docker requires docker-utils at runtime
d03ac3
- do not ship dockerinit
d03ac3
- spec cleanups
d03ac3
d03ac3
* Mon Apr 04 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-26
d03ac3
- Resolves: rhbz#1323819 - allow images with VOLUME(s) when binds destination
d03ac3
override volume definition
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#b795b73
d03ac3
- built docker-selinux commit#e72d8d7
d03ac3
- built d-s-s commit#346018e
d03ac3
- built docker-utils commit#b851c03
d03ac3
- built forward-journald commit#77e02a9
d03ac3
d03ac3
* Wed Mar 23 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-25
d03ac3
- Resolves: rhbz#1320302 - Backport fix for --cgroup-parent in docker
d03ac3
- same commits as release -24, only added bug number
d03ac3
d03ac3
* Wed Mar 23 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-24
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#78ee77d
d03ac3
- built docker-selinux commit#8718b62
d03ac3
- built d-s-s commit#c6f0553
d03ac3
- built docker-utils commit#b851c03
d03ac3
- built forward-journald commit#77e02a9
d03ac3
d03ac3
* Thu Mar 17 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-23
d03ac3
- Resolves: rhbz#1318360 - delete bounds checking rules
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#f97fb16
d03ac3
- built docker-selinux commit#8718b62
d03ac3
- built d-s-s commit#c6f0553
d03ac3
- built docker-utils commit#b851c03
d03ac3
- built forward-journald commit#77e02a9
d03ac3
d03ac3
* Tue Mar 15 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-22
d03ac3
- Resolves: rhbz#1317991 - Set Delegate=yes for cgroup transient units
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#f97fb16
d03ac3
- built docker-selinux commit#69be4dc
d03ac3
- built d-s-s commit#03dfc7b
d03ac3
- built docker-utils commit#b851c03
d03ac3
- built forward-journald commit#77e02a9
d03ac3
d03ac3
* Mon Mar 14 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-21
d03ac3
- Resolves: rhbz#1317662 - include manpage for docker daemon (corrected)
d03ac3
d03ac3
* Mon Mar 14 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-20
d03ac3
- Resolves: rhbz#1317662 - include manpage for docker run
d03ac3
- Resolves: rhbz#1317627 - ensure that we join all the cgroups
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#0275914
d03ac3
- built docker-selinux commit#69be4dc
d03ac3
- built d-s-s commit#03dfc7b
d03ac3
- built docker-utils commit#b851c03
d03ac3
- built forward-journald commit#77e02a9
d03ac3
d03ac3
* Wed Mar 09 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-19
d03ac3
- Resolves: rhbz#1316190 - set NotifyAccess=all in unitfile
d03ac3
d03ac3
* Tue Mar 08 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-18
d03ac3
- Resolves: rhbz#1286765 - set TimeoutStartSec=0 in unitfile
d03ac3
- Resolves: rhbz#1298363, rhbz#1300076, rhbz#1304038, rhbz#1302418
d03ac3
- built forward-journald commit#77e02a9 - other subpackage commits same as
d03ac3
previous build
d03ac3
d03ac3
* Tue Mar 08 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-17
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#185277d
d03ac3
- built docker-selinux commit#e2e1f22
d03ac3
- built d-s-s commit#03dfc7b
d03ac3
- built docker-utils commit#b851c03
d03ac3
- built forward-journald commit#48b9599
d03ac3
d03ac3
* Tue Feb 02 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-16
d03ac3
- Resolves: rhbz#1304038 - conflict with openshift 3.1
d03ac3
- allow golang >= 1.4.2
d03ac3
d03ac3
* Thu Jan 28 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-15
d03ac3
- Resolves: rhbz#1302411
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#50e78a0
d03ac3
- built docker-selinux commit#e2e1f22
d03ac3
- built d-s-s commit#1c2b95b
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Tue Jan 26 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-14
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#fe0b590
d03ac3
- built docker-selinux commit#e2e1f22
d03ac3
- built d-s-s commit#1c2b95b
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Mon Jan 25 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-13
d03ac3
- Resolves: rhbz#1301199 - do not append distro tag to docker version
d03ac3
d03ac3
* Wed Jan 20 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-12
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#2dbcc37
d03ac3
- built docker-selinux commit#e2e1f22
d03ac3
- built d-s-s commit#1c2b95b
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Fri Jan 15 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-11
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#2dbcc37
d03ac3
- built docker-selinux commit#e2e1f22
d03ac3
- built d-s-s commit#1c2b95b
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Mon Jan 11 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-10
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#26797f7
d03ac3
- built docker-selinux commit#e2e1f22
d03ac3
- built d-s-s commit#1c2b95b
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Sat Dec 12 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-9
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#401dfee
d03ac3
- built docker-selinux commit#e2e1f22
d03ac3
- built d-s-s commit#91d6cfd
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Fri Dec 04 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-8
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#32fb322
d03ac3
- built docker-selinux commit#441f312
d03ac3
- built d-s-s commit#e38b94d
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Wed Dec 02 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-7
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#32fb322
d03ac3
- built docker-selinux commit#441f312
d03ac3
- built d-s-s commit#0814c26
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Wed Dec 02 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-6
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#32fb322
d03ac3
- built docker-selinux commit#441f312
d03ac3
- built d-s-s commit#0814c26
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Mon Nov 30 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-5
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#32fb322
d03ac3
- built docker-selinux commit#dbfad05
d03ac3
- built d-s-s commit#0814c26
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Wed Nov 25 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-4
d03ac3
- Resolves: rhbz#1275399
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#390a466
d03ac3
- built docker-selinux commit#dbfad05
d03ac3
- built d-s-s commit#0814c26
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Tue Nov 24 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-3
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#698d463
d03ac3
- built docker-selinux commit#dbfad05
d03ac3
- built d-s-s commit#0814c26
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Tue Nov 24 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-2
d03ac3
- Resolves: rhbz#1263394 - set unitfile to 5 mins
d03ac3
d03ac3
* Tue Nov 24 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-1
d03ac3
- use correct version number, no other change since last build
d03ac3
d03ac3
* Tue Nov 24 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-11
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#f1cda67
d03ac3
- built docker-selinux commit#dbfad05
d03ac3
- built d-s-s commit#0814c26
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Mon Nov 23 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-10
d03ac3
- Resolves: rhbz#1283718
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#0ba2491
d03ac3
- built docker-selinux commit#dbfad05
d03ac3
- built d-s-s commit#0814c26
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Thu Nov 19 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-9
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#eb84909
d03ac3
- built docker-selinux commit#dbfad05
d03ac3
- built d-s-s commit#c638a60
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Wed Nov 11 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-10
d03ac3
- Resolves: rhbz#1281805, rhbz#1271229, rhbz#1276346
d03ac3
- Resolves: rhbz#1275376, rhbz#1282898
d03ac3
d03ac3
* Wed Nov 11 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-9
d03ac3
- Resolves: rhbz#1280068 - Build docker with DWARF
d03ac3
- Move back to 1.8.2
d03ac3
- built docker @rhatdan/rhel7-1.8 commit#a01dc02
d03ac3
- built docker-selinux commit#dbfad05
d03ac3
- built d-s-s commit#e9722cc
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Mon Nov 02 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-8
d03ac3
- Resolves: rhbz#1225093 (partially)
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#cdd3941
d03ac3
- built docker-selinux commit#dbfad05
d03ac3
- built d-s-s commit#e9722cc
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Wed Oct 28 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-7
d03ac3
- Resolves: rhbz#1275554
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#61fd965
d03ac3
- built docker-selinux commit#dbfad05
d03ac3
- built d-s-s commit#e9722cc
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Wed Oct 28 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-6
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#166d43b
d03ac3
- built docker-selinux commit#dbfad05
d03ac3
- built d-s-s commit#e9722cc
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Mon Oct 26 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-5
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#6897d78
d03ac3
- built docker-selinux commit#dbfad05
d03ac3
- built d-s-s commit#e9722cc
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Fri Oct 23 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-4
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#0bb2bf4
d03ac3
- built docker-selinux commit#dbfad05
d03ac3
- built d-s-s commit#e9722cc
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Thu Oct 22 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-3
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#1ea7f30
d03ac3
- built docker-selinux commit#dbfad05
d03ac3
- built d-s-s commit#01df512
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Thu Oct 22 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-2
d03ac3
- built docker @projectatomic/rhel7-1.9 commit#1ea7f30
d03ac3
- built docker-selinux commit#fe61432
d03ac3
- built d-s-s commit#01df512
d03ac3
- built docker-utils commit#dab51ac
d03ac3
d03ac3
* Wed Oct 14 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-8
d03ac3
- built docker @rhatdan/rhel7-1.8 commit#a01dc02
d03ac3
- built docker-selinux master commit#e2a5226
d03ac3
- built d-s-s master commit#6898d43
d03ac3
- built docker-utils master commit#dab51ac
d03ac3
d03ac3
* Fri Oct 09 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-7
d03ac3
- https://github.com/rhatdan/docker/pull/127 (changes for libcontainer/user)
d03ac3
- https://github.com/rhatdan/docker/pull/128 (/dev mount from host)
d03ac3
d03ac3
* Wed Oct 07 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-6
d03ac3
- built docker @rhatdan/rhel7-1.8 commit#bb472f0
d03ac3
- built docker-selinux master commit#44abd21
d03ac3
- built d-s-s master commit#6898d43
d03ac3
- built docker-utils master commit#dab51ac
d03ac3
d03ac3
* Wed Sep 30 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-5
d03ac3
- Resolves: rhbz#1267743
d03ac3
- https://github.com/docker/docker/pull/16639
d03ac3
- https://github.com/opencontainers/runc/commit/c9d58506297ed6c86c9d8a91d861e4de3772e699
d03ac3
d03ac3
* Wed Sep 30 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-4
d03ac3
- built docker @rhatdan/rhel7-1.8 commit#23f26d9
d03ac3
- built docker-selinux master commit#2ed73eb
d03ac3
- built d-s-s master commit#6898d43
d03ac3
- built docker-utils master commit#dab51ac
d03ac3
d03ac3
* Wed Sep 30 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-3
d03ac3
- Resolves: rhbz#1264557 (extras-rhel-7.1.6) - rebase to 1.8.2
d03ac3
- Resolves: rhbz#1265810 (extras-rhel-7.2) - rebase to 1.8.2
d03ac3
- built docker @rhatdan/rhel7-1.8 commit#23f26d9
d03ac3
- built docker-selinux master commit#d6560f8
d03ac3
- built d-s-s master commit#6898d43
d03ac3
- built docker-utils master commit#dab51ac
d03ac3
- use golang == 1.4.2
d03ac3
d03ac3
* Mon Sep 21 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.8.2-2
d03ac3
- built docker-selinux master commit#d6560f8
d03ac3
d03ac3
* Fri Sep 18 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.8.2-1
d03ac3
- package only provides docker, docker-selinux and docker-logrotate
d03ac3
- Resolves: rhbz#1261329, rhbz#1263394, rhbz#1264090
d03ac3
- built docker @rhatdan/rhel7-1.8 commit#23f26d9
d03ac3
- built d-s-s master commit#6898d43
d03ac3
- built docker-selinux master commit#b5281b7
d03ac3
- built docker-utils master commit#dab51ac
d03ac3
d03ac3
* Thu Aug 27 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-115
d03ac3
- Resolves: rhbz#1252421
d03ac3
- built docker @rhatdan/rhel7-1.7 commit#446ad9b
d03ac3
- built docker-py @rhatdan/master commit#54a154d
d03ac3
- built d-s-s master commit#d3b9ba7
d03ac3
- built atomic master commit#011a826
d03ac3
- built docker-selinux master commit#6267b83
d03ac3
- built docker-utils master commit#dab51ac
d03ac3
d03ac3
* Mon Aug 24 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-114
d03ac3
- Resolves: rhbz#1255874 - (#1255488 is for 7.2)
d03ac3
d03ac3
* Fri Aug 21 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-113
d03ac3
- Resolves: rhbz#1255488
d03ac3
- built docker @rhatdan/rhel7-1.7 commit#4136d06
d03ac3
- built docker-py @rhatdan/master commit#54a154d
d03ac3
- built d-s-s master commit#d3b9ba7
d03ac3
- built atomic master commit#995a223
d03ac3
- built docker-selinux master commit#39a894e
d03ac3
- built docker-utils master commit#dab51ac
d03ac3
d03ac3
* Thu Aug 20 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-112
d03ac3
- Resolves: rhbz#1255051
d03ac3
- built docker @rhatdan/rhel7-1.7 commit#4136d06
d03ac3
- built docker-py @rhatdan/master commit#54a154d
d03ac3
- built d-s-s master commit#ac1b30e
d03ac3
- built atomic master commit#53169d5
d03ac3
- built docker-selinux master commit#39a894e
d03ac3
- built docker-utils master commit#dab51ac
d03ac3
d03ac3
* Tue Aug 18 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-111
d03ac3
- built docker @rhatdan/rhel7-1.7 commit#9fe211a
d03ac3
- built docker-py @rhatdan/master commit#54a154d
d03ac3
- built d-s-s master commit#ac1b30e
d03ac3
- built atomic master commit#53169d5
d03ac3
- built docker-selinux master commit#39a894e
d03ac3
- built docker-utils master commit#dab51ac
d03ac3
d03ac3
* Mon Aug 17 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-110
d03ac3
- built docker @rhatdan/rhel7-1.7 commit#ba2de95
d03ac3
- built docker-py @rhatdan/master commit#54a154d
d03ac3
- built d-s-s master commit#ac1b30e
d03ac3
- built atomic master commit#53169d5
d03ac3
- built docker-selinux master commit#39a894e
d03ac3
- built docker-utils master commit#dab51ac
d03ac3
d03ac3
* Mon Aug 10 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-109
d03ac3
- Resolves: rhbz#1249651 - unpin python-requests requirement
d03ac3
- update python-websocket-client to 0.32.0
d03ac3
d03ac3
* Tue Jul 28 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-108
d03ac3
- built docker @rhatdan/rhel7-1.7 commit#3043001
d03ac3
- built docker-py @rhatdan/master commit#54a154d
d03ac3
- built d-s-s master commit#b152398
d03ac3
- built atomic master commit#a4442c4
d03ac3
- built docker-selinux master commit#bebf349
d03ac3
- built docker-utils master commit#dab51ac
d03ac3
d03ac3
* Fri Jul 24 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-107
d03ac3
- built docker @rhatdan/rhel7-1.7 commit#3043001
d03ac3
- built docker-py @rhatdan/master commit#54a154d
d03ac3
- built d-s-s master commit#b152398
d03ac3
- built atomic master commit#52d695c
d03ac3
- built docker-selinux master commit#bebf349
d03ac3
d03ac3
* Thu Jul 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-106
d03ac3
- built docker @rhatdan/rhel7-1.7 commit#3043001
d03ac3
- built docker-py @rhatdan/master commit#54a154d
d03ac3
- built d-s-s master commit#b152398
d03ac3
- built atomic master commit#52d695c
d03ac3
- built docker-selinux master commit#bebf349
d03ac3
d03ac3
* Thu Jul 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-105
d03ac3
- Resolves: rhbz#1245325
d03ac3
- built docker @rhatdan/rhel7-1.7 commit#ac162a3
d03ac3
- built docker-py @rhatdan/master commit#54a154d
d03ac3
- built d-s-s master commit#b152398
d03ac3
- built atomic master commit#ac162a3
d03ac3
- built docker-selinux master commit#ac162a3
d03ac3
- disable dockerfetch and dockertarsum
d03ac3
d03ac3
* Wed Jul 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-104
d03ac3
- use a common release tag for all subpackages, much easier to update via
d03ac3
rpmdev-bumpspec
d03ac3
d03ac3
* Wed Jul 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-1
d03ac3
- built docker @rhatdan/rhel7-1.7 commit#d2fbc0b
d03ac3
- built docker-py @rhatdan/master commit#54a154d
d03ac3
- built d-s-s master commit#b152398
d03ac3
- built atomic master commit#d2fbc0b
d03ac3
- built docker-selinux master commit#d2fbc0b
d03ac3
d03ac3
* Fri Jul 17 2015 Jonathan Lebon <jlebon@redhat.com> - 1.7.0-5
d03ac3
- Add patch for atomic.sysconfig
d03ac3
- Related: https://github.com/projectatomic/atomic/pull/94
d03ac3
d03ac3
* Wed Jul 15 2015 Jan Chaloupka <jchaloup@redhat.com> - 1.7.0-3.1
d03ac3
- Add unit-test subpackage
d03ac3
d03ac3
* Thu Jul 09 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.0-3
d03ac3
- built docker @rhatdan/rhel7-1.7 commit#4740812
d03ac3
d03ac3
* Wed Jul 08 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.0-2
d03ac3
- increment all release tags to make koji happy
d03ac3
d03ac3
* Wed Jul 08 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.0-1
d03ac3
- Resolves: rhbz#1241186 - rebase to v1.7.0 + rh patches
d03ac3
- built docker @rhatdan/rhel7-1.7 commit#0f235fc
d03ac3
- built docker-selinux master commit#bebf349
d03ac3
- built d-s-s master commit#e9c3a4c
d03ac3
- built atomic master commit#f133684
d03ac3
- rebase python-docker-py to upstream v1.2.3
d03ac3
- disable docker-fetch for now, doesn't build
d03ac3
d03ac3
* Mon Jun 15 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-14
d03ac3
- Resolves: rhbz#1218639, rhbz#1225556 (unresolved in -11)
d03ac3
- build docker @lsm5/rhel7-1.6 commit#ba1f6c3
d03ac3
d03ac3
* Mon Jun 15 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-13
d03ac3
- Resolves: rhbz#1222453
d03ac3
d03ac3
* Mon Jun 15 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-12
d03ac3
- build docker-selinux master commit#9c089c6
d03ac3
d03ac3
* Mon Jun 15 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-11
d03ac3
- Resolves: rhbz#1231936 (clone of fedora rhbz#1231134), rhbz#1225556, rhbz#1215819
d03ac3
- build docker @rhatdan/rhel7-1.6 commit#7b32c6c
d03ac3
d03ac3
* Wed Jun 10 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-10
d03ac3
- correct typo
d03ac3
d03ac3
* Wed Jun 10 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-9
d03ac3
- Resolves: rhbz#1214070 - update d-s-s related deps
d03ac3
- Resolves: rhbz#1229374 - use prior existing metadata volume if any
d03ac3
- Resolves: rhbz#1230192 (include d-s-s master commit#eefbef7)
d03ac3
- build docker @rhatdan/rhel7-1.6 commit#b79465d
d03ac3
d03ac3
* Mon Jun 08 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-8
d03ac3
- Resolves: rhbz#1229319 - do not claim /run/secrets
d03ac3
- Resolves: rhbz#1228167
d03ac3
- build docker rhatdan/rhel7-1.6 commit#ac7d43f
d03ac3
- build atomic master commit#f863afd
d03ac3
d03ac3
* Thu Jun 04 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-7
d03ac3
- Resolves: rhbz#1228397 - install manpage for d-s-s
d03ac3
- Resolves: rhbz#1228459 - solve 'Permission denied' error for d-s-s
d03ac3
- Resolves: rhbz#1228685 - don't append dist tag to docker version
d03ac3
(revert change in 1.6.2-4)
d03ac3
d03ac3
* Tue Jun 02 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-6
d03ac3
- build docker rhatdan/rhel7-1.6 commit#f1561f6
d03ac3
d03ac3
* Tue Jun 02 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-5
d03ac3
- build docker-selinux master commit#99c4c77
d03ac3
- build atomic master commit#2f1398c
d03ac3
- include docker-storage-setup in docker itself, no subpackage created
d03ac3
- docker.service Wants=docker-storage-setup.service
d03ac3
d03ac3
* Mon Jun 01 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-4
d03ac3
- include dist tag in 'docker version' to tell a distro build from a docker
d03ac3
upstream rpm
d03ac3
d03ac3
* Mon Jun 01 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-3
d03ac3
- Resolves: rhbz#1226989 - correct install path for docker-stroage-setup
d03ac3
config file
d03ac3
- Resolves: rhbz#1227040 - docker requires docker-storage-setup at runtime
d03ac3
- built docker @rhatdan/rhel7-1.6 commit#a615a49
d03ac3
- built atomic master commit#2f1398c
d03ac3
- built d-s-s master commit#0f2b772
d03ac3
d03ac3
* Thu May 28 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-2
d03ac3
- build docker @rhatdan/rhel7-1.6 commit#175dd9c
d03ac3
d03ac3
* Thu May 28 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-1
d03ac3
- Resolves: rhbz#1225965 - rebase to 1.6.2
d03ac3
- Resolves: rhbz#1226320, rhbz#1225549, rhbz#1225556
d03ac3
- Resolves: rhbz#1219705 - CVE-2015-3627
d03ac3
- Resolves: rhbz#1219701 - CVE-2015-3629
d03ac3
- Resolves: rhbz#1219709 - CVE-2015-3630
d03ac3
- Resolves: rhbz#1219713 - CVE-2015-3631
d03ac3
- build docker @rhatdan/rhel7-1.6 commit#d8675b5
d03ac3
- build atomic master commit#ec592be
d03ac3
- build docker-selinux master commit#e86b2bc
d03ac3
d03ac3
* Tue May 26 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-15
d03ac3
- d-s-s br: pkgconfig(systemd)
d03ac3
- Resolves: rhbz#1214070 enforce min NVR for lvm2
d03ac3
d03ac3
* Tue May 26 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-14
d03ac3
- build atomic master commit#cc9aed4
d03ac3
- build docker-utils master commit#562e2c0
d03ac3
- build docker-selinux master commit#ba1ff3c
d03ac3
- include docker-storage-setup subpackage, use master commit#e075395
d03ac3
- Resolves: rhbz#1216095
d03ac3
d03ac3
* Mon May 25 2015 Michal Minar <miminar@redhat.com> - 1.6.0-13
d03ac3
- Remove all repositories when removing image by ID.
d03ac3
- Resolves: #1222784
d03ac3
d03ac3
* Thu Apr 30 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-11
d03ac3
- build docker @rhatdan/rhel7-1.6 commit#8aae715
d03ac3
- build atomic @projectatomic/master commit#5b2fa8d (fixes a typo)
d03ac3
- Resolves: rhbz#1207839
d03ac3
- Resolves: rhbz#1211765
d03ac3
- Resolves: rhbz#1209545 (fixed in 1.6.0-10)
d03ac3
- Resolves: rhbz#1151167 (fixed in 1.6.0-6)
d03ac3
d03ac3
* Tue Apr 28 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-10
d03ac3
- Resolves: rhbz#1215768
d03ac3
- Resolves: rhbz#1212579
d03ac3
- build docker @rhatdan/rhel7-1.6 commit#0852937
d03ac3
d03ac3
* Fri Apr 24 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-9
d03ac3
- build docker @rhatdan/rhel7-1.6 commit#6a57386
d03ac3
- fix registry unit test
d03ac3
d03ac3
* Wed Apr 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-8
d03ac3
- build docker @rhatdan/rhel7-1.6 commit#7bd2216
d03ac3
d03ac3
* Tue Apr 21 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-7
d03ac3
- build docker @rhatdan/rhel7-1.6 commit#c3721ce
d03ac3
- build atomic master commit#7b136161
d03ac3
- Resolves: rhbz#1213636
d03ac3
d03ac3
* Fri Apr 17 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-6
d03ac3
- Rebuilt with golang 1.4.2
d03ac3
- Resolves: rhbz#1212813
d03ac3
d03ac3
* Fri Apr 17 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-5
d03ac3
- build docker @rhatdan/rhel7-1.6 commit#9c42d44
d03ac3
- build docker-selinux master commit#d59539b
d03ac3
- Resolves: rhbz#1211750
d03ac3
d03ac3
* Thu Apr 16 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-4
d03ac3
- build docker @rhatdan/rhel7-1.6 commit#c1a573c
d03ac3
- includes 1.6.0 release + redhat patches
d03ac3
- include docker-selinux @fedora-cloud/master commit#d74079c
d03ac3
d03ac3
* Thu Apr 16 2015 Michal Minar <miminar@redhat.com> - 1.6.0-3
d03ac3
- Fixed login command
d03ac3
- Resolves: rhbz#1212188
d03ac3
d03ac3
* Wed Apr 15 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-2
d03ac3
- Resolves: rhbz#1211292 - move GOTRACEBACK=crash to unitfile
d03ac3
- build docker @rhatdan/rhel7-1.6 commit#fed6da1
d03ac3
- build atomic master commit#e5734c4
d03ac3
d03ac3
* Tue Apr 14 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-1
d03ac3
- use docker @rhatdan/rhel7-1.6 commit#a8ccea4
d03ac3
d03ac3
* Fri Apr 10 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-30
d03ac3
- use docker @rhatdan/1.6 commit#24bc1b9
d03ac3
d03ac3
* Fri Mar 27 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-29
d03ac3
- use docker @rhatdan/1.6 commit#2d06cf9
d03ac3
d03ac3
* Fri Mar 27 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-28
d03ac3
- Resolves: rhbz#1206443 - CVE-2015-1843
d03ac3
d03ac3
* Wed Mar 25 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-27
d03ac3
- revert rhatdan/docker commit 72a9000fcfa2ec5a2c4a29fb62a17c34e6dd186f
d03ac3
- Resolves: rhbz#1205276
d03ac3
d03ac3
* Tue Mar 24 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-26
d03ac3
- revert rhatdan/docker commit 74310f16deb3d66444bb461c29a09966170367db
d03ac3
d03ac3
* Mon Mar 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-25
d03ac3
- don't delete autogen in hack/make.sh
d03ac3
- re-enable docker-fetch
d03ac3
d03ac3
* Mon Mar 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-24
d03ac3
- bump release tags for all
d03ac3
d03ac3
* Mon Mar 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-23
d03ac3
- Resolves: rhbz#1204260 - do not delete linkgraph.db before starting service
d03ac3
d03ac3
* Mon Mar 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-22
d03ac3
- increment release tag (no other changes)
d03ac3
d03ac3
* Sun Mar 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-21
d03ac3
- install cert for redhat.io authentication
d03ac3
d03ac3
* Mon Mar 16 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-20
d03ac3
- Resolves: rhbz#1202517 - fd leak
d03ac3
- build docker rhatdan/1.5.0 commit#ad5a92a
d03ac3
- build atomic master commit#4ff7dbd
d03ac3
d03ac3
* Tue Mar 10 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-19
d03ac3
- Resolves: rhbz#1200394 - don't mount /run as tmpfs if mounted as a volume
d03ac3
- Resolves: rhbz#1187603 - 'atomic run' no longer ignores new image if
d03ac3
container still exists
d03ac3
- build docker rhatdan/1.5.0 commit#5992901
d03ac3
- no rpm change, ensure release tags in changelogs are consistent
d03ac3
d03ac3
* Tue Mar 10 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-18
d03ac3
- handle updates smoothly from a unified docker-python to split out
d03ac3
docker-python and atomic
d03ac3
d03ac3
* Tue Mar 10 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-17
d03ac3
- build docker @rhatdan/1.5.0 commit#d7dfe82
d03ac3
- Resolves: rhbz#1198599 - use homedir from /etc/passwd if $HOME isn't set
d03ac3
- atomic provided in a separate subpackage
d03ac3
d03ac3
* Mon Mar 09 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-16
d03ac3
- build docker @rhatdan/1.5.0 commit#867ff5e
d03ac3
- build atomic master commit#
d03ac3
- Resolves: rhbz#1194445 - patch docker-python to make it work with older
d03ac3
python-requests
d03ac3
- Resolves: rhbz#1200104 - dns resolution works with selinux enforced
d03ac3
d03ac3
* Mon Mar 09 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-15
d03ac3
- Resolves: rhbz#1199433 - correct install path for 80-docker.rules
d03ac3
d03ac3
* Mon Mar 09 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-14
d03ac3
- build docker, @rhatdan/1.5.0 commit#365cf68
d03ac3
- build atomic, master commit#f175fb6
d03ac3
d03ac3
* Fri Mar 06 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-13
d03ac3
- build docker, @rhatdan/1.5.0 commit#e0fdceb
d03ac3
- build atomic, master commit#ef2b661
d03ac3
d03ac3
* Thu Mar 05 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-12
d03ac3
- Resolves: rhbz#1198630
d03ac3
- build docker, @rhatdan/1.5.0 commit#233dc3e
d03ac3
- build atomic, master commit#c6390c7
d03ac3
d03ac3
* Tue Mar 03 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-11
d03ac3
- build docker rhatdan/1.5.0 commit#3a4d0f1
d03ac3
- build atomic master commit#d68d76b
d03ac3
- Resolves: rhbz#1188252 - rm /var/lib/docker/linkgraph.db in unit file
d03ac3
before starting docker daemon
d03ac3
d03ac3
* Mon Mar 02 2015 Michal Minar <miminar@redhat.com> - 1.5.0-10
d03ac3
- Fixed and speeded up repository searching
d03ac3
d03ac3
* Fri Feb 27 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-9
d03ac3
- increment all release tags
d03ac3
d03ac3
* Fri Feb 27 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-9
d03ac3
- increment docker release tag
d03ac3
d03ac3
* Thu Feb 26 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-7
d03ac3
- Resolves: rhbz#1196709 - fix docker build's authentication issue
d03ac3
- Resolves: rhbz#1197158 - fix ADD_REGISTRY and BLOCK_REGISTRY in unitfile
d03ac3
- Build docker-utils commit#dcb4518
d03ac3
- update docker-python to 1.0.0
d03ac3
- disable docker-fetch (not compiling currently)
d03ac3
d03ac3
* Tue Feb 24 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-6
d03ac3
- build docker rhatdan/1.5.0 commit#e5d3e08
d03ac3
- docker registers machine with systemd
d03ac3
- create journal directory so that journal on host can see journal content in
d03ac3
container
d03ac3
- build atomic commit#a7ff4cb
d03ac3
d03ac3
* Mon Feb 16 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-5
d03ac3
- use docker rhatdan/1.5.0 commit#1a4e592
d03ac3
- Complete fix for rhbz#1192171 - patch included in docker tarball
d03ac3
- use docker-python 0.7.2
d03ac3
- Resolves: rhbz#1192312 - solve version-release requirements for
d03ac3
subpackages
d03ac3
d03ac3
* Mon Feb 16 2015 Michal Minar <miminar@redhat.com> - 1.5.0-4
d03ac3
- Readded --(add|block)-registry flags.
d03ac3
d03ac3
* Fri Feb 13 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-2
d03ac3
- Resolves: rhbz#1192312 - custom release numbers for 
d03ac3
python-websocket-client and docker-py
d03ac3
- Resolves: rhbz#1192171 - changed options and env vars for
d03ac3
adding/replacing registries
d03ac3
d03ac3
* Thu Feb 12 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-1
d03ac3
- build docker rhatdan/1.5 a06d357
d03ac3
- build atomic projectaomic/master d8c35ce
d03ac3
d03ac3
* Thu Feb 05 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-39
d03ac3
- Resolves: rhbz#1187993 - allow core dump with no size limit
d03ac3
- build atomic commit#98c21fd
d03ac3
d03ac3
* Mon Feb 02 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-38
d03ac3
- Resolves: rhbz#1188318
d03ac3
- atom commit#ea7ab31
d03ac3
d03ac3
* Fri Jan 30 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-37
d03ac3
- add extra options to /etc/sysconfig/docker to add/block registries
d03ac3
- build atom commit#3d4fd20
d03ac3
d03ac3
* Fri Jan 30 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-36
d03ac3
- remove dependency on python-backports
d03ac3
d03ac3
* Fri Jan 30 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-35
d03ac3
- build atomic rhatdan/master commit#973142b
d03ac3
- build docker rhatdan/1.4.1-beta2 commit#d26b358
d03ac3
d03ac3
* Fri Jan 30 2015 Michal Minar <miminar@redhat.com> - 1.4.1-34
d03ac3
- added patch fixed tagging issue
d03ac3
d03ac3
* Fri Jan 30 2015 Michal Minar <miminar@redhat.com> - 1.4.1-33
d03ac3
- build docker rhatdan/1.4.1-beta2 commit#b024f0f
d03ac3
- --registry-(replace|preprend) replaced with --(add|block)-registry
d03ac3
d03ac3
* Thu Jan 29 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-32
d03ac3
- build atom commit#567c2c8
d03ac3
d03ac3
* Thu Jan 29 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-31
d03ac3
- build atom commit#b9e02ad
d03ac3
d03ac3
* Wed Jan 28 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-30
d03ac3
- Require python-backports >= 1.0-8 for docker-python
d03ac3
d03ac3
* Wed Jan 28 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-29
d03ac3
- build docker rhatdan/1.4.1-beta2 commit#0af307b
d03ac3
- --registry-replace|prepend flags via Michal Minar <miminar@redhat.com>
d03ac3
- build atomic rhatdan/master commit#37f9be0
d03ac3
d03ac3
* Tue Jan 27 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-27
d03ac3
- patch to avoid crash in atomic host
d03ac3
d03ac3
* Tue Jan 27 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-26
d03ac3
- build docker rhatdan/1.4.1-beta2 commit#0b4cade
d03ac3
- build atomic rhatdan/master commit#b8c7b9d
d03ac3
- build docker-utils vbatts/master commit#fb94a28
d03ac3
d03ac3
* Fri Jan 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-25
d03ac3
- build atomic commit#fcbc57b with fix for install/upgrade/status
d03ac3
- build docker rhatdan/1.4.1-beta2 commit#f476836
d03ac3
d03ac3
* Fri Jan 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-24
d03ac3
- install dockertarsum from github.com/vbatts/docker-utils
d03ac3
d03ac3
* Fri Jan 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-23
d03ac3
- build rhatdan/atom commit#ef16d40
d03ac3
- try urlparse from six, else from argparse
d03ac3
d03ac3
* Fri Jan 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-22
d03ac3
- use python-argparse to provide urlparse
d03ac3
d03ac3
* Fri Jan 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-21
d03ac3
- move atomic bits into -python subpackage
d03ac3
d03ac3
* Fri Jan 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-20
d03ac3
- update atom commit#10fc4c8
d03ac3
d03ac3
* Fri Jan 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-19
d03ac3
- build rhatdan/1.4.1-beta2 commit#35a8dc5
d03ac3
- --registry-prepend instead of --registry-append
d03ac3
d03ac3
* Thu Jan 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-18
d03ac3
- don't install nsinit
d03ac3
d03ac3
* Thu Jan 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-17
d03ac3
- install atomic and manpages
d03ac3
- don't provide -devel subpackage
d03ac3
d03ac3
* Thu Jan 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-16
d03ac3
- install python-websocket-client and python-docker as subpackages
d03ac3
d03ac3
* Thu Jan 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-15
d03ac3
- build rhatdan/1.4.1-beta2 commit#06670da
d03ac3
- install subscription manager
d03ac3
d03ac3
* Tue Jan 20 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-14
d03ac3
- increment release number to avoid conflict with 7.0
d03ac3
d03ac3
* Tue Jan 20 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-13
d03ac3
- build rhatdan/1.4.1-beta2 commit#2de8e5d
d03ac3
- Resolves: rhbz#1180718 - MountFlags=slave in unitfile
d03ac3
d03ac3
* Mon Jan 19 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-12
d03ac3
- build rhatdan/1.4.1-beta2 commit#218805f
d03ac3
d03ac3
* Mon Jan 19 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-11
d03ac3
- build rhatdan/1.4.1-beta2 commit#4b7addf
d03ac3
d03ac3
* Fri Jan 16 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-10
d03ac3
- build rhatdan/1.4.1-beta2 commit #a0c7884
d03ac3
- socket activation not used
d03ac3
- include docker_transition_unconfined boolean info and disable socket
d03ac3
activation in /etc/sysconfig/docker
d03ac3
- docker group not created
d03ac3
d03ac3
* Fri Jan 16 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-9
d03ac3
- run all tests and not just unit tests
d03ac3
- replace codegansta.tgz with codegangsta-cli.patch
d03ac3
d03ac3
* Thu Jan 15 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-8
d03ac3
- build rhatdan/1.4.1-beta2 commit #6ee2421
d03ac3
d03ac3
* Wed Jan 14 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-7
d03ac3
- build rhatdan/1.4.1-beta2 01a64e011da131869b42be8b2f11f540fd4b8f33
d03ac3
- run tests inside a docker repo during check phase
d03ac3
d03ac3
* Mon Jan 12 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-6
d03ac3
- build rhatdan/1.4.1-beta2 01a64e011da131869b42be8b2f11f540fd4b8f33
d03ac3
d03ac3
* Wed Jan 07 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-5
d03ac3
- own /etc/docker
d03ac3
- include check for unit tests
d03ac3
d03ac3
* Fri Dec 19 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-4
d03ac3
- Install vim and shell completion files in main package itself
d03ac3
d03ac3
* Thu Dec 18 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-3
d03ac3
- rename cron script
d03ac3
- change enable/disable to true/false
d03ac3
d03ac3
* Thu Dec 18 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-2
d03ac3
- Enable the logrotate cron job by default, disable via sysconfig variable
d03ac3
- Install docker-network and docker-container-logrotate sysconfig files
d03ac3
d03ac3
* Thu Dec 18 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-1
d03ac3
- Resolves: rhbz#1174351 - update to 1.4.1
d03ac3
- Provide subpackages for fish and zsh completion and vim syntax highlighting
d03ac3
- Provide subpackage to run logrotate on running containers as a daily cron
d03ac3
job
d03ac3
d03ac3
* Mon Dec 15 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.0-1
d03ac3
- Resolves: rhbz#1174266 - update to 1.4.0
d03ac3
- Fixes: CVE-2014-9357, CVE-2014-9358
d03ac3
- uses /etc/docker as cert path
d03ac3
- create dockerroot user
d03ac3
- skip btrfs version check
d03ac3
d03ac3
* Fri Dec 05 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.3.2-4
d03ac3
- update libcontainer paths
d03ac3
- update docker.sysconfig to include DOCKER_TMPDIR
d03ac3
- update docker.service unitfile
d03ac3
- package provides docker-io-devel
d03ac3
d03ac3
* Mon Dec 01 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.3.2-3
d03ac3
- revert docker.service change, -H fd:// in sysconfig file
d03ac3
d03ac3
* Mon Dec 01 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.3.2-2
d03ac3
- update systemd files
d03ac3
d03ac3
* Tue Nov 25 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.3.2-1
d03ac3
- Resolves: rhbz#1167870 - update to v1.3.2
d03ac3
- Fixes CVE-2014-6407, CVE-2014-6408
d03ac3
d03ac3
* Fri Nov 14 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.3.1-2
d03ac3
- remove unused buildrequires
d03ac3
d03ac3
* Thu Nov 13 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.3.1-1
d03ac3
- bump to upstream v1.3.1
d03ac3
- patch to vendor in go-md2man and deps for manpage generation
d03ac3
d03ac3
* Thu Oct 30 2014 Dan Walsh <dwalsh@redhat.com> - 1.2.0-1.8
d03ac3
- Remove docker-rhel entitlment patch. This was buggy and is no longer needed
d03ac3
d03ac3
* Mon Oct 20 2014 Dan Walsh <dwalsh@redhat.com> - 1.2.0-1.7
d03ac3
- Add 404 patch to allow docker to continue to try to download updates with 
d03ac3
- different certs, even if the registry returns 404 error
d03ac3
d03ac3
* Tue Oct 7 2014 Eric Paris <eparis@redhat.com> - 1.2.0-1.6
d03ac3
- make docker.socket start/restart when docker starts/restarts
d03ac3
d03ac3
* Tue Sep 30 2014 Eric Paris <eparis@redhat.com> - 1.2.0-1.5
d03ac3
- put docker.socket back the right way
d03ac3
d03ac3
* Sat Sep 27 2014 Dan Walsh <dwalsh@redhat.com> - 1.2.0-1.4
d03ac3
- Remove docker.socket
d03ac3
d03ac3
* Mon Sep 22 2014 Dan Walsh <dwalsh@redhat.com> - 1.2.0-1.2
d03ac3
- Fix docker.service file to use /etc/sysconfig/docker-storage.service
d03ac3
d03ac3
* Mon Sep 22 2014 Dan Walsh <dwalsh@redhat.com> - 1.2.0-1.1
d03ac3
- Bump release to 1.2.0
d03ac3
- Add support for /etc/sysconfig/docker-storage
d03ac3
- Add Provides:golang(github.com/docker/libcontainer)
d03ac3
- Add provides docker-io to get through compatibility issues
d03ac3
- Update man pages
d03ac3
- Add missing pieces of libcontainer
d03ac3
- Devel now obsoletes golang-github-docker-libcontainer-devel
d03ac3
- Remove runtime dependency on golang
d03ac3
- Fix secrets patch
d03ac3
- Add -devel -pkg-devel subpackages
d03ac3
- Move libcontainer from -lib to -devel subpackage
d03ac3
- Allow docker to use /etc/pki/entitlement for certs
d03ac3
- New sources that satisfy nsinit deps
d03ac3
- Change docker client certs links
d03ac3
- Add nsinit
d03ac3
d03ac3
* Tue Sep 2 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-10
d03ac3
- Add  docker client entitlement certs
d03ac3
d03ac3
* Fri Aug 8 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-9
d03ac3
- Add Matt Heon patch to allow containers to work if machine is not entitled
d03ac3
d03ac3
* Thu Aug 7 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-8
d03ac3
- Fix handing of rhel repos
d03ac3
d03ac3
* Mon Aug 4 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-6
d03ac3
- Update man pages
d03ac3
d03ac3
* Mon Jul 28 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-5
d03ac3
- Fix environment patch
d03ac3
- Add /etc/machine-id patch
d03ac3
d03ac3
* Fri Jul 25 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-4
d03ac3
- Add Secrets Patch back in
d03ac3
d03ac3
* Fri Jul 25 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-3
d03ac3
- Pull in latest docker-1.1.2 code
d03ac3
d03ac3
* Fri Jul 25 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-2
d03ac3
- Update to the latest from upstream
d03ac3
- Add comment and envoroment patches to allow setting of comments and 
d03ac3
- enviroment variables from docker import
d03ac3
d03ac3
* Wed Jul 23 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.1-3
d03ac3
- Install docker bash completions in proper location
d03ac3
- Add audit_write as a default capability
d03ac3
d03ac3
* Tue Jul 22 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.1-2
d03ac3
- Update man pages
d03ac3
- Fix docker pull registry/repo
d03ac3
d03ac3
* Fri Jul 18 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.1-1
d03ac3
- Update to latest from upstream
d03ac3
d03ac3
* Mon Jul 14 2014 Dan Walsh <dwalsh@redhat.com> - 1.0.0-10
d03ac3
- Pass otions from /etc/sysconfig/docker into docker.service unit file
d03ac3
d03ac3
* Thu Jul 10 2014 Dan Walsh <dwalsh@redhat.com> - 1.0.0-9
d03ac3
- Fix docker-registry patch to handle search
d03ac3
d03ac3
* Thu Jul 10 2014 Dan Walsh <dwalsh@redhat.com> - 1.0.0-8
d03ac3
- Re-add %%{_datadir}/rhel/secrets/rhel7.repo
d03ac3
d03ac3
* Wed Jul 9 2014 Dan Walsh <dwalsh@redhat.com> - 1.0.0-7
d03ac3
- Patch: Save "COMMENT" field in Dockerfile into image content.
d03ac3
- Patch: Update documentation noting that SIGCHLD is not proxied.
d03ac3
- Patch: Escape control and nonprintable characters in docker ps
d03ac3
- Patch: machine-id: add container id access
d03ac3
- Patch: Report child error better (and later)
d03ac3
- Patch: Fix invalid fd race
d03ac3
- Patch: Super minimal host based secrets
d03ac3
- Patch: libcontainer: Mount cgroups in the container
d03ac3
- Patch: pkg/cgroups Add GetMounts() and GetAllSubsystems()
d03ac3
- Patch: New implementation of /run support
d03ac3
- Patch: Error if Docker daemon starts with BTRFS graph driver and SELinux enabled
d03ac3
- Patch: Updated CLI documentation for docker pull with notes on specifying URL
d03ac3
- Patch: Updated docker pull manpage to reflect ability to specify URL of registry.
d03ac3
- Patch: Docker should use /var/tmp for large temporary files.
d03ac3
- Patch: Add --registry-append and --registry-replace qualifier to docker daemon
d03ac3
- Patch: Increase size of buffer for signals
d03ac3
- Patch: Update documentation noting that SIGCHLD is not proxied.
d03ac3
- Patch: Escape control and nonprintable characters in docker ps
d03ac3
d03ac3
* Tue Jun 24 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.0.0-4
d03ac3
- Documentation update for --sig-proxy
d03ac3
- increase size of buffer for signals
d03ac3
- escape control and nonprintable characters in docker ps
d03ac3
d03ac3
* Tue Jun 24 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.0.0-3
d03ac3
- Resolves: rhbz#1111769 - CVE-2014-3499
d03ac3
d03ac3
* Thu Jun 19 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.0.0-2
d03ac3
- Resolves: rhbz#1109938 - upgrade to upstream version 1.0.0 + patches
d03ac3
  use repo: https://github.com/lsm5/docker/commits/htb2
d03ac3
- Resolves: rhbz#1109858 - fix race condition with secrets
d03ac3
- add machine-id patch:
d03ac3
https://github.com/vbatts/docker/commit/4f51757a50349bbbd2282953aaa3fc0e9a989741
d03ac3
d03ac3
* Wed Jun 18 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.0.0-1
d03ac3
- Resolves: rhbz#1109938 - upgrade to upstream version 1.0.0 + patches
d03ac3
  use repo: https://github.com/lsm5/docker/commits/2014-06-18-htb2
d03ac3
- Resolves: rhbz#1110876 - secrets changes required for subscription
d03ac3
management
d03ac3
- btrfs now available (remove old comment)
d03ac3
d03ac3
* Fri Jun 06 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-19
d03ac3
- build with golang-github-kr-pty-0-0.19.git98c7b80.el7
d03ac3
d03ac3
* Fri Jun 06 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-18
d03ac3
- update manpages
d03ac3
- use branch: https://github.com/lsm5/docker/commits/2014-06-06-2
d03ac3
d03ac3
* Thu Jun 05 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-17
d03ac3
- use branch: https://github.com/lsm5/docker/commits/2014-06-05-final2
d03ac3
d03ac3
* Thu Jun 05 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-16
d03ac3
- latest repo: https://github.com/lsm5/docker/commits/2014-06-05-5
d03ac3
- update secrets symlinks
d03ac3
d03ac3
* Mon Jun 02 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-15
d03ac3
- correct the rhel7.repo symlink
d03ac3
d03ac3
* Mon Jun 02 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-14
d03ac3
- only symlink the repo itself, not the dir
d03ac3
d03ac3
* Sun Jun 01 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-13
d03ac3
- use the repo dir itself and not repo for second symlink
d03ac3
d03ac3
* Sat May 31 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-12
d03ac3
- create symlinks at install time and not in scriptlets
d03ac3
- own symlinks in /etc/docker/secrets
d03ac3
d03ac3
* Sat May 31 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-11
d03ac3
- add symlinks for sharing host entitlements
d03ac3
d03ac3
* Thu May 29 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-10
d03ac3
- /etc/docker/secrets has permissions 750
d03ac3
d03ac3
* Thu May 29 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-9
d03ac3
- create and own /etc/docker/secrets
d03ac3
d03ac3
* Thu May 29 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-8
d03ac3
- don't use docker.sysconfig meant for sysvinit (just to avoid confusion)
d03ac3
d03ac3
* Thu May 29 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-7
d03ac3
- install /etc/sysconfig/docker for additional args
d03ac3
- use branch 2014-05-29 with modified secrets dir path
d03ac3
d03ac3
* Thu May 29 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-6
d03ac3
- secret store patch
d03ac3
d03ac3
* Thu May 22 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-5
d03ac3
- native driver: add required capabilities (dotcloud issue #5928)
d03ac3
d03ac3
* Thu May 22 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-4
d03ac3
- branch 2014-05-22
d03ac3
- rename rhel-dockerfiles dir to dockerfiles
d03ac3
d03ac3
* Wed May 21 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-3
d03ac3
- mount /run with correct selinux label
d03ac3
d03ac3
* Mon May 19 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-2
d03ac3
- add btrfs
d03ac3
d03ac3
* Mon May 19 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-1
d03ac3
- use latest master
d03ac3
- branch: https://github.com/lsm5/docker/commits/2014-05-09-2
d03ac3
d03ac3
* Mon May 19 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-13
d03ac3
- add registry search list patch
d03ac3
d03ac3
* Wed May 14 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-12
d03ac3
- include dockerfiles for postgres, systemd/{httpd,mariadb}
d03ac3
d03ac3
* Mon May 12 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-11
d03ac3
- add apache, mariadb and mongodb dockerfiles
d03ac3
- branch 2014-05-12
d03ac3
d03ac3
* Fri May 09 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-10
d03ac3
- add rhel-dockerfile/mongodb
d03ac3
d03ac3
* Fri May 09 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-9
d03ac3
- use branch: https://github.com/lsm5/docker/commits/2014-05-09
d03ac3
- install rhel-dockerfile for apache
d03ac3
- cleanup: get rid of conditionals
d03ac3
- libcontainer: create dirs/files as needed for bind mounts
d03ac3
d03ac3
* Thu May 08 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-8
d03ac3
- fix docker top
d03ac3
d03ac3
* Tue May 06 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-7
d03ac3
- set container pid for process in native driver
d03ac3
d03ac3
* Tue May 06 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-6
d03ac3
- ensure upstream PR #5529 is included
d03ac3
d03ac3
* Mon May 05 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-5
d03ac3
- block push to docker index
d03ac3
d03ac3
* Thu May 01 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-4
d03ac3
- enable selinux in unitfile
d03ac3
d03ac3
* Thu May 01 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-3
d03ac3
- branch https://github.com/lsm5/docker/commits/2014-05-01-2
d03ac3
d03ac3
* Thu May 01 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-2
d03ac3
- branch https://github.com/lsm5/docker/tree/2014-05-01
d03ac3
d03ac3
* Fri Apr 25 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-1
d03ac3
- renamed (docker-io -> docker)
d03ac3
- rebased on 0.10.0
d03ac3
- branch used: https://github.com/lsm5/docker/tree/2014-04-25
d03ac3
- manpages packaged separately (pandoc not available on RHEL-7)
d03ac3
d03ac3
* Tue Apr 08 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.1-4.collider
d03ac3
- manpages merged, some more patches from alex
d03ac3
d03ac3
* Thu Apr 03 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.1-3.collider
d03ac3
- fix --volumes-from mount failure, include docker-images/info/tag manpages
d03ac3
d03ac3
* Tue Apr 01 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.1-2.collider
d03ac3
- solve deadlock issue
d03ac3
d03ac3
* Mon Mar 31 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.1-1.collider
d03ac3
- branch 2014-03-28, include additional docker manpages from whenry
d03ac3
d03ac3
* Thu Mar 27 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.0-7.collider
d03ac3
- env file support (vbatts)
d03ac3
d03ac3
* Mon Mar 17 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.0-6.collider
d03ac3
- dwalsh's selinux patch rewritten
d03ac3
- point to my docker repo as source0 (contains all patches already)
d03ac3
- don't require tar and libcgroup
d03ac3
d03ac3
* Fri Mar 14 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.0-5.collider
d03ac3
- add kraman's container-pid.patch
d03ac3
d03ac3
* Fri Mar 14 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.0-4.collider
d03ac3
- require docker.socket in unitfile
d03ac3
d03ac3
* Thu Mar 13 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.0-3.collider
d03ac3
- use systemd socket activation
d03ac3
d03ac3
* Wed Mar 12 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.0-2.collider
d03ac3
- add collider tag to release field
d03ac3
d03ac3
* Tue Mar 11 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.0-1
d03ac3
- upstream version bump to 0.9.0
d03ac3
d03ac3
* Mon Mar 10 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.8.1-3
d03ac3
- add alexl's patches upto af9bb2e3d37fcddd5e041d6ae45055f649e2fbd4
d03ac3
- add guelfey/go.dbus to BR
d03ac3
d03ac3
* Sun Mar 09 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.8.1-2
d03ac3
- use upstream commit 3ace9512bdf5c935a716ee1851d3e636e7962fac
d03ac3
- add dwalsh's patches for selinux, emacs-gitignore, listen_pid and
d03ac3
remount /var/lib/docker as --private
d03ac3
d03ac3
* Wed Feb 19 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.8.1-1
d03ac3
- Bug 1066841 - upstream version bump to v0.8.1
d03ac3
- use sysvinit files from upstream contrib
d03ac3
- BR golang >= 1.2-7
d03ac3
d03ac3
* Thu Feb 13 2014 Adam Miller <maxamillion@fedoraproject.org> - 0.8.0-3
d03ac3
- Remove unneeded sysctl settings in initscript
d03ac3
  https://github.com/dotcloud/docker/pull/4125
d03ac3
d03ac3
* Sat Feb 08 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.8.0-2
d03ac3
- ignore btrfs for rhel7 and clones for now
d03ac3
- include vim syntax highlighting from contrib/syntax/vim
d03ac3
d03ac3
* Wed Feb 05 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.8.0-1
d03ac3
- upstream version bump
d03ac3
- don't use btrfs for rhel6 and clones (yet)
d03ac3
d03ac3
* Mon Jan 20 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.6-2
d03ac3
- bridge-utils only for rhel < 7
d03ac3
- discard freespace when image is removed
d03ac3
d03ac3
* Thu Jan 16 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.6-1
d03ac3
- upstream version bump v0.7.6
d03ac3
- built with golang >= 1.2
d03ac3
d03ac3
* Thu Jan 09 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.5-1
d03ac3
- upstream version bump to 0.7.5
d03ac3
d03ac3
* Thu Jan 09 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.4-1
d03ac3
- upstream version bump to 0.7.4 (BZ #1049793)
d03ac3
- udev rules file from upstream contrib
d03ac3
- unit file firewalld not used, description changes
d03ac3
d03ac3
* Mon Jan 06 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.3-3
d03ac3
- udev rules typo fixed (BZ 1048775)
d03ac3
d03ac3
* Sat Jan 04 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.3-2
d03ac3
- missed commit value in release 1, updated now
d03ac3
- upstream release monitoring (BZ 1048441)
d03ac3
d03ac3
* Sat Jan 04 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.3-1
d03ac3
- upstream release bump to v0.7.3
d03ac3
d03ac3
* Thu Dec 19 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.2-2
d03ac3
- require xz to work with ubuntu images (BZ #1045220)
d03ac3
d03ac3
* Wed Dec 18 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.2-1
d03ac3
- upstream release bump to v0.7.2
d03ac3
d03ac3
* Fri Dec 06 2013 Vincent Batts <vbatts@redhat.com> - 0.7.1-1
d03ac3
- upstream release of v0.7.1
d03ac3
d03ac3
* Mon Dec 02 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-14
d03ac3
- sysvinit patch corrected (epel only)
d03ac3
- 80-docker.rules unified for udisks1 and udisks2
d03ac3
d03ac3
* Mon Dec 02 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-13
d03ac3
- removed firewall-cmd --add-masquerade
d03ac3
d03ac3
* Sat Nov 30 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-12
d03ac3
- systemd for fedora >= 18
d03ac3
- firewalld in unit file changed from Requires to Wants
d03ac3
- firewall-cmd --add-masquerade after docker daemon start in unit file
d03ac3
  (Michal Fojtik <mfojtik@redhat.com>), continue if not present (Michael Young
d03ac3
  <m.a.young@durham.ac.uk>)
d03ac3
- 80-docker.rules included for epel too, ENV variables need to be changed for
d03ac3
  udisks1
d03ac3
d03ac3
* Fri Nov 29 2013 Marek Goldmann <mgoldman@redhat.com> - 0.7.0-11
d03ac3
- Redirect docker log to /var/log/docker (epel only)
d03ac3
- Removed the '-b none' parameter from sysconfig, it's unnecessary since
d03ac3
  we create the bridge now automatically (epel only)
d03ac3
- Make sure we have the cgconfig service started before we start docker,
d03ac3
    RHBZ#1034919 (epel only)
d03ac3
d03ac3
* Thu Nov 28 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-10
d03ac3
- udev rules added for fedora >= 19 BZ 1034095
d03ac3
- epel testing pending
d03ac3
d03ac3
* Thu Nov 28 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-9
d03ac3
- requires and started after firewalld
d03ac3
d03ac3
* Thu Nov 28 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-8
d03ac3
- iptables-fix patch corrected
d03ac3
d03ac3
* Thu Nov 28 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-7
d03ac3
- use upstream tarball and patch with mgoldman's commit
d03ac3
d03ac3
* Thu Nov 28 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-6
d03ac3
- using mgoldman's shortcommit value 0ff9bc1 for package (BZ #1033606)
d03ac3
- https://github.com/dotcloud/docker/pull/2907
d03ac3
d03ac3
* Wed Nov 27 2013 Adam Miller <maxamillion@fedoraproject.org> - 0.7.0-5
d03ac3
- Fix up EL6 preun/postun to not fail on postun scripts
d03ac3
d03ac3
* Wed Nov 27 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-4
d03ac3
- brctl patch for rhel <= 7
d03ac3
d03ac3
* Wed Nov 27 2013 Vincent Batts <vbatts@redhat.com> - 0.7.0-3
d03ac3
- Patch how the bridge network is set up on RHEL (BZ #1035436)
d03ac3
d03ac3
* Wed Nov 27 2013 Vincent Batts <vbatts@redhat.com> - 0.7.0-2
d03ac3
- add libcgroup require (BZ #1034919)
d03ac3
d03ac3
* Tue Nov 26 2013 Marek Goldmann <mgoldman@redhat.com> - 0.7.0-1
d03ac3
- Upstream release 0.7.0
d03ac3
- Using upstream script to build the binary
d03ac3
d03ac3
* Mon Nov 25 2013 Vincent Batts <vbatts@redhat.com> - 0.7-0.20.rc7
d03ac3
- correct the build time defines (bz#1026545). Thanks dan-fedora.
d03ac3
d03ac3
* Fri Nov 22 2013 Adam Miller <maxamillion@fedoraproject.org> - 0.7-0.19.rc7
d03ac3
- Remove xinetd entry, added sysvinit
d03ac3
d03ac3
* Fri Nov 22 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.18.rc7
d03ac3
- rc version bump
d03ac3
d03ac3
* Wed Nov 20 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.17.rc6
d03ac3
- removed ExecStartPost lines from docker.service (BZ #1026045)
d03ac3
- dockerinit listed in files
d03ac3
d03ac3
* Wed Nov 20 2013 Vincent Batts <vbatts@redhat.com> - 0.7-0.16.rc6
d03ac3
- adding back the none bridge patch
d03ac3
d03ac3
* Wed Nov 20 2013 Vincent Batts <vbatts@redhat.com> - 0.7-0.15.rc6
d03ac3
- update docker source to crosbymichael/0.7.0-rc6
d03ac3
- bridge-patch is not needed on this branch
d03ac3
d03ac3
* Tue Nov 19 2013 Vincent Batts <vbatts@redhat.com> - 0.7-0.14.rc5
d03ac3
- update docker source to crosbymichael/0.7-rc5
d03ac3
- update docker source to 457375ea370a2da0df301d35b1aaa8f5964dabfe
d03ac3
- static magic
d03ac3
- place dockerinit in a libexec
d03ac3
- add sqlite dependency
d03ac3
d03ac3
* Sat Nov 02 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.13.dm
d03ac3
- docker.service file sets iptables rules to allow container networking, this
d03ac3
    is a stopgap approach, relevant pull request here:
d03ac3
    https://github.com/dotcloud/docker/pull/2527
d03ac3
d03ac3
* Sat Oct 26 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.12.dm
d03ac3
- dm branch
d03ac3
- dockerinit -> docker-init
d03ac3
d03ac3
* Tue Oct 22 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.11.rc4
d03ac3
- passing version information for docker build BZ #1017186
d03ac3
d03ac3
* Sat Oct 19 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.10.rc4
d03ac3
- rc version bump
d03ac3
- docker-init -> dockerinit
d03ac3
- zsh completion script installed to /usr/share/zsh/site-functions
d03ac3
d03ac3
* Fri Oct 18 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.9.rc3
d03ac3
- lxc-docker version matches package version
d03ac3
d03ac3
* Fri Oct 18 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.8.rc3
d03ac3
- double quotes removed from buildrequires as per existing golang rules
d03ac3
d03ac3
* Fri Oct 11 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.7.rc3
d03ac3
- xinetd file renamed to docker.xinetd for clarity
d03ac3
d03ac3
* Thu Oct 10 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.6.rc3
d03ac3
- patched for el6 to use sphinx-1.0-build
d03ac3
d03ac3
* Wed Oct 09 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.5.rc3
d03ac3
- rc3 version bump
d03ac3
- exclusivearch x86_64
d03ac3
d03ac3
* Wed Oct 09 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.4.rc2
d03ac3
- debuginfo not Go-ready yet, skipped
d03ac3
d03ac3
* Wed Oct 09 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.3.rc2
d03ac3
- debuginfo package generated
d03ac3
- buildrequires listed with versions where needed
d03ac3
- conditionals changed to reflect systemd or not
d03ac3
- docker commit value not needed
d03ac3
- versioned provides lxc-docker
d03ac3
d03ac3
* Mon Oct 07 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-2.rc2
d03ac3
- rc branch includes devmapper
d03ac3
- el6 BZ #1015865 fix included
d03ac3
d03ac3
* Sun Oct 06 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-1
d03ac3
- version bump, includes devicemapper
d03ac3
- epel conditionals included
d03ac3
- buildrequires sqlite-devel
d03ac3
d03ac3
* Fri Oct 04 2013 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.6.3-4.devicemapper
d03ac3
- docker-io service enables IPv4 and IPv6 forwarding
d03ac3
- docker user not needed
d03ac3
- golang not supported on ppc64, docker-io excluded too
d03ac3
d03ac3
* Thu Oct 03 2013 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.6.3-3.devicemapper
d03ac3
- Docker rebuilt with latest kr/pty, first run issue solved
d03ac3
d03ac3
* Fri Sep 27 2013 Marek Goldmann <mgoldman@redhat.com> - 0.6.3-2.devicemapper
d03ac3
- Remove setfcap from lxc.cap.drop to make setxattr() calls working in the
d03ac3
  containers, RHBZ#1012952
d03ac3
d03ac3
* Thu Sep 26 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.3-1.devicemapper
d03ac3
- version bump
d03ac3
- new version solves docker push issues
d03ac3
d03ac3
* Tue Sep 24 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-14.devicemapper
d03ac3
- package requires lxc
d03ac3
d03ac3
* Tue Sep 24 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-13.devicemapper
d03ac3
- package requires tar
d03ac3
d03ac3
* Tue Sep 24 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-12.devicemapper
d03ac3
- /var/lib/docker installed
d03ac3
- package also provides lxc-docker
d03ac3
d03ac3
* Mon Sep 23 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-11.devicemapper
d03ac3
- better looking url
d03ac3
d03ac3
* Mon Sep 23 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-10.devicemapper
d03ac3
- release tag changed to denote devicemapper patch
d03ac3
d03ac3
* Mon Sep 23 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-9
d03ac3
- device-mapper-devel is a buildrequires for alex's code
d03ac3
- docker.service listed as a separate source file
d03ac3
d03ac3
* Sun Sep 22 2013 Matthew Miller <mattdm@fedoraproject.org> 0.6.2-8
d03ac3
- install bash completion
d03ac3
- use -v for go build to show progress
d03ac3
d03ac3
* Sun Sep 22 2013 Matthew Miller <mattdm@fedoraproject.org> 0.6.2-7
d03ac3
- build and install separate docker-init
d03ac3
d03ac3
* Sun Sep 22 2013 Matthew Miller <mattdm@fedoraproject.org> 0.6.2-4
d03ac3
- update to use new source-only golang lib packages
d03ac3
d03ac3
* Sat Sep 21 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-3
d03ac3
- man page generation from docs/.
d03ac3
- systemd service file created
d03ac3
- dotcloud/tar no longer required
d03ac3
d03ac3
* Fri Sep 20 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-2
d03ac3
- patched with alex larsson's devmapper code
d03ac3
d03ac3
* Wed Sep 18 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-1
d03ac3
- Version bump
d03ac3
d03ac3
* Tue Sep 10 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.1-2
d03ac3
- buildrequires updated
d03ac3
- package renamed to docker-io
d03ac3
 
d03ac3
* Fri Aug 30 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.1-1
d03ac3
- Version bump
d03ac3
- Package name change from lxc-docker to docker
d03ac3
- Makefile patched from 0.5.3
d03ac3
d03ac3
* Wed Aug 28 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.5.3-5
d03ac3
- File permissions settings included
d03ac3
d03ac3
* Wed Aug 28 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.5.3-4
d03ac3
- Credits in changelog modified as per reference's request
d03ac3
d03ac3
* Tue Aug 27 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.5.3-3
d03ac3
- Dependencies listed as rpm packages instead of tars
d03ac3
- Install section added
d03ac3
d03ac3
* Mon Aug 26 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.5.3-2
d03ac3
- Github packaging
d03ac3
- Deps not downloaded at build time courtesy Elan Ruusamäe
d03ac3
- Manpage and other docs installed
d03ac3
d03ac3
* Fri Aug 23 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.5.3-1
d03ac3
- Initial fedora package
d03ac3
- Some credit to Elan Ruusamäe (glen@pld-linux.org)