|
|
26b193 |
%if 0%{?fedora}
|
|
|
26b193 |
%global with_devel 1
|
|
|
26b193 |
%global with_unit_test 1
|
|
|
26b193 |
%else
|
|
|
26b193 |
%global with_devel 0
|
|
|
26b193 |
%global with_unit_test 0
|
|
|
26b193 |
%endif
|
|
|
26b193 |
|
|
|
e34f9a |
%global with_unit_test 1
|
|
|
b28b51 |
# modifying the dockerinit binary breaks the SHA1 sum check by docker
|
|
|
b28b51 |
%global __os_install_post %{_rpmconfigdir}/brp-compress
|
|
|
b28b51 |
|
|
|
b28b51 |
#debuginfo not supported with Go
|
|
|
699406 |
%global debug_package %{nil}
|
|
|
699406 |
%global provider_tld com
|
|
|
699406 |
%global provider github
|
|
|
699406 |
%global project docker
|
|
|
311a84 |
%global repo %{project}
|
|
|
699406 |
|
|
|
26b193 |
%global import_path %{provider}.%{provider_tld}/%{project}/%{name}
|
|
|
26b193 |
|
|
|
26b193 |
# docker
|
|
|
26b193 |
%global git0 https://github.com/projectatomic/docker
|
|
|
26b193 |
%global commit0 78ee77d1ede95dcbc0c021ec722ed85178dc38ed
|
|
|
26b193 |
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
|
|
|
26b193 |
|
|
|
26b193 |
# d-s-s
|
|
|
26b193 |
%global git1 https://github.com/projectatomic/docker-storage-setup
|
|
|
26b193 |
%global commit1 c6f0553f248be2523a8b1bf345529d9958e1b82e
|
|
|
26b193 |
%global shortcommit1 %(c=%{commit1}; echo ${c:0:7})
|
|
|
26b193 |
%global dss_libdir %{_exec_prefix}/lib/%{name}-storage-setup
|
|
|
26b193 |
|
|
|
26b193 |
# docker-selinux
|
|
|
26b193 |
%global git2 https://github.com/projectatomic/docker-selinux
|
|
|
26b193 |
%global commit2 8718b6204b7e9ffd151230380fe3dc71f58e14d3
|
|
|
26b193 |
%global shortcommit2 %(c=%{commit2}; echo ${c:0:7})
|
|
|
699406 |
|
|
|
26b193 |
# docker-utils
|
|
|
26b193 |
%global git3 https://github.com/vbatts/docker-utils
|
|
|
26b193 |
%global commit3 b851c03ddae1db30a4acf5e4cc5e31b6a671af35
|
|
|
26b193 |
%global shortcommit3 %(c=%{commit3}; echo ${c:0:7})
|
|
|
b28b51 |
|
|
|
26b193 |
# forward-journald
|
|
|
26b193 |
%global git6 https://github.com/projectatomic/forward-journald
|
|
|
26b193 |
%global commit6 77e02a9774a6ca054e41c27f6f319d701f1cbaea
|
|
|
26b193 |
%global shortcommit6 %(c=%{commit6}; echo ${c:0:7})
|
|
|
b215bf |
|
|
|
311a84 |
# %%{name}-selinux stuff (prefix with ds_ for version/release etc.)
|
|
|
d3ef29 |
# Some bits borrowed from the openstack-selinux package
|
|
|
d3ef29 |
%global selinuxtype targeted
|
|
|
d3ef29 |
%global moduletype services
|
|
|
311a84 |
%global modulenames %{name}
|
|
|
d3ef29 |
|
|
|
d3ef29 |
# Usage: _format var format
|
|
|
d3ef29 |
# Expand 'modulenames' into various formats as needed
|
|
|
d3ef29 |
# Format must contain '$x' somewhere to do anything useful
|
|
|
d3ef29 |
%global _format() export %1=""; for x in %{modulenames}; do %1+=%2; %1+=" "; done;
|
|
|
d3ef29 |
|
|
|
d3ef29 |
# Relabel files
|
|
|
26b193 |
%global relabel_files() %{_sbindir}/restorecon -R %{_bindir}/%{name} %{_localstatedir}/run/%{name}.sock %{_localstatedir}/run/%{name}.pid %{_sysconfdir}/%{name} %{_localstatedir}/log/%{name} %{_localstatedir}/log/lxc %{_localstatedir}/lock/lxc %{_unitdir}/%{name}.service %{_sysconfdir}/%{name} &> /dev/null || :
|
|
|
d3ef29 |
|
|
|
d3ef29 |
# Version of SELinux we were using
|
|
|
311a84 |
%if 0%{?fedora} >= 22
|
|
|
311a84 |
%global selinux_policyver 3.13.1-119
|
|
|
311a84 |
%else
|
|
|
d3ef29 |
%global selinux_policyver 3.13.1-23
|
|
|
311a84 |
%endif
|
|
|
d3ef29 |
|
|
|
311a84 |
Name: %{repo}
|
|
|
26b193 |
Version: 1.9.1
|
|
|
26b193 |
Release: 25%{?dist}
|
|
|
699406 |
Summary: Automates deployment of containerized applications
|
|
|
699406 |
License: ASL 2.0
|
|
|
311a84 |
URL: https://%{import_path}
|
|
|
311a84 |
# only x86_64 for now: https://%%{provider}.%%{provider_tld}/%%{name}/%%{name}/issues/136
|
|
|
bfbe87 |
ExclusiveArch: x86_64 aarch64
|
|
|
e34f9a |
# Branch used available at
|
|
|
26b193 |
# https://%%{provider}.%%{provider_tld}/projectatomic/%%{name}/commits/rhel7-1.9
|
|
|
26b193 |
Source0: %{git0}/archive/%{commit0}.tar.gz
|
|
|
311a84 |
Source1: %{name}.service
|
|
|
311a84 |
Source3: %{name}.sysconfig
|
|
|
311a84 |
Source4: %{name}-storage.sysconfig
|
|
|
311a84 |
Source5: %{name}-logrotate.sh
|
|
|
311a84 |
Source6: README.%{name}-logrotate
|
|
|
311a84 |
Source7: %{name}-network.sysconfig
|
|
|
311a84 |
# Source11 is the source tarball for %%{name}tarsum and %%{name}-fetch
|
|
|
26b193 |
Source11: %{git3}/archive/%{commit3}.tar.gz
|
|
|
311a84 |
# Source12 is the source tarball for %%{name}-selinux
|
|
|
26b193 |
Source12: %{git2}/archive/%{commit2}/%{name}-selinux-%{shortcommit2}.tar.gz
|
|
|
311a84 |
# Source13 is the source tarball for %%{name}-storage-setup
|
|
|
26b193 |
Source13: %{git1}/archive/%{commit1}/%{name}-storage-setup-%{shortcommit1}.tar.gz
|
|
|
26b193 |
Source14: %{git6}/archive/%{commit6}/forward-journald-%{shortcommit6}.tar.gz
|
|
|
bfbe87 |
Patch0: 0001-docker-bump-bolt-to-v1.1.0.patch
|
|
|
699406 |
BuildRequires: glibc-static
|
|
|
26b193 |
BuildRequires: golang >= 1.4.2
|
|
|
699406 |
BuildRequires: device-mapper-devel
|
|
|
94c7ff |
BuildRequires: pkgconfig(audit)
|
|
|
699406 |
BuildRequires: btrfs-progs-devel
|
|
|
699406 |
BuildRequires: sqlite-devel
|
|
|
26b193 |
BuildRequires: go-md2man >= 1.0.4
|
|
|
699406 |
BuildRequires: pkgconfig(systemd)
|
|
|
275132 |
Requires(post): systemd
|
|
|
275132 |
Requires(preun): systemd
|
|
|
275132 |
Requires(postun): systemd
|
|
|
b28b51 |
# need xz to work with ubuntu images
|
|
|
699406 |
Requires: xz
|
|
|
26b193 |
Requires: device-mapper-libs >= 7:1.02.97
|
|
|
31f2c3 |
#Requires: subscription-manager
|
|
|
26b193 |
Provides: lxc-%{name} = %{version}-%{release}
|
|
|
26b193 |
Provides: %{name}-io = %{version}-%{release}
|
|
|
b28b51 |
|
|
|
d3ef29 |
# RE: rhbz#1195804 - ensure min NVR for selinux-policy
|
|
|
d3ef29 |
Requires: selinux-policy >= 3.13.1-23
|
|
|
311a84 |
Requires(pre): %{name}-selinux >= %{version}-%{release}
|
|
|
d3ef29 |
|
|
|
275132 |
# rhbz#1214070 - update deps for d-s-s
|
|
|
275132 |
Requires: lvm2 >= 2.02.112
|
|
|
275132 |
Requires: xfsprogs
|
|
|
275132 |
|
|
|
94c7ff |
# rhbz#1282898 - obsolete docker-storage-setup
|
|
|
26b193 |
Obsoletes: %{name}-storage-setup <= 0.0.4-2
|
|
|
26b193 |
|
|
|
26b193 |
# rhbz#1304038
|
|
|
26b193 |
Conflicts: atomic-openshift < 3.2
|
|
|
26b193 |
Conflicts: origin < 1.2
|
|
|
26b193 |
|
|
|
26b193 |
# rhbz#1300076
|
|
|
26b193 |
Requires: %{name}-forward-journald = %{version}-%{release}
|
|
|
94c7ff |
|
|
|
b28b51 |
%description
|
|
|
b28b51 |
Docker is an open-source engine that automates the deployment of any
|
|
|
b28b51 |
application as a lightweight, portable, self-sufficient container that will
|
|
|
b28b51 |
run virtually anywhere.
|
|
|
b28b51 |
|
|
|
b28b51 |
Docker containers can encapsulate any payload, and will run consistently on
|
|
|
b28b51 |
and between virtually any server. The same container that a developer builds
|
|
|
b28b51 |
and tests on a laptop will run at scale, in production*, on VMs, bare-metal
|
|
|
b28b51 |
servers, OpenStack clusters, public instances, or combinations of the above.
|
|
|
b28b51 |
|
|
|
e34f9a |
%if 0%{?with_unit_test}
|
|
|
e34f9a |
%package unit-test
|
|
|
e34f9a |
Summary: %{summary} - for running unit tests
|
|
|
e34f9a |
|
|
|
e34f9a |
%description unit-test
|
|
|
e34f9a |
%{summary} - for running unit tests
|
|
|
e34f9a |
%endif
|
|
|
e34f9a |
|
|
|
b215bf |
%package logrotate
|
|
|
311a84 |
Summary: cron job to run logrotate on Docker containers
|
|
|
26b193 |
Requires: %{name} = %{version}-%{release}
|
|
|
26b193 |
Provides: %{name}-io-logrotate = %{version}-%{release}
|
|
|
b215bf |
|
|
|
b215bf |
%description logrotate
|
|
|
b215bf |
This package installs %{summary}. logrotate is assumed to be installed on
|
|
|
b215bf |
containers for this to work, failures are silently ignored.
|
|
|
b215bf |
|
|
|
d3ef29 |
%package selinux
|
|
|
d3ef29 |
Summary: SELinux policies for Docker
|
|
|
d3ef29 |
BuildRequires: selinux-policy
|
|
|
d3ef29 |
BuildRequires: selinux-policy-devel
|
|
|
d3ef29 |
Requires(post): selinux-policy-base >= %{selinux_policyver}
|
|
|
d3ef29 |
Requires(post): selinux-policy-targeted >= %{selinux_policyver}
|
|
|
d3ef29 |
Requires(post): policycoreutils
|
|
|
d3ef29 |
Requires(post): policycoreutils-python
|
|
|
d3ef29 |
Requires(post): libselinux-utils
|
|
|
26b193 |
Provides: %{name}-io-selinux = %{version}-%{release}
|
|
|
d3ef29 |
|
|
|
d3ef29 |
%description selinux
|
|
|
d3ef29 |
SELinux policy modules for use with Docker.
|
|
|
d3ef29 |
|
|
|
26b193 |
%package forward-journald
|
|
|
26b193 |
Summary: Forward stdin to journald
|
|
|
26b193 |
License: ASL 2.0
|
|
|
26b193 |
|
|
|
26b193 |
%description forward-journald
|
|
|
26b193 |
Forward stdin to journald
|
|
|
26b193 |
|
|
|
26b193 |
The main driver for this program is < go 1.6rc2 has a issue where 10
|
|
|
26b193 |
SIGPIPE's on stdout or stderr cause go to generate a non-trappable SIGPIPE
|
|
|
26b193 |
killing the process. This happens when journald is restarted while docker is
|
|
|
26b193 |
running under systemd.
|
|
|
26b193 |
|
|
|
b28b51 |
%prep
|
|
|
26b193 |
%setup -qn %{name}-%{commit0}
|
|
|
bfbe87 |
%ifarch aarch64
|
|
|
bfbe87 |
%patch0 -p1
|
|
|
bfbe87 |
%endif
|
|
|
b215bf |
cp %{SOURCE6} .
|
|
|
b215bf |
|
|
|
311a84 |
# unpack %%{name}-selinux
|
|
|
d3ef29 |
tar zxf %{SOURCE12}
|
|
|
d3ef29 |
|
|
|
311a84 |
# untar %%{name}-utils tarball
|
|
|
b215bf |
tar zxf %{SOURCE11}
|
|
|
b215bf |
|
|
|
275132 |
# untar d-s-s
|
|
|
275132 |
tar zxf %{SOURCE13}
|
|
|
275132 |
|
|
|
26b193 |
# untar forward-journald
|
|
|
26b193 |
tar zxf %{SOURCE14}
|
|
|
26b193 |
|
|
|
b28b51 |
%build
|
|
|
b28b51 |
mkdir _build
|
|
|
b28b51 |
|
|
|
b28b51 |
pushd _build
|
|
|
26b193 |
mkdir -p src/%{provider}.%{provider_tld}/{%{name},projectatomic,vbatts}
|
|
|
311a84 |
ln -s $(dirs +1 -l) src/%{import_path}
|
|
|
26b193 |
ln -s $(dirs +1 -l)/%{name}-utils-%{commit3} src/%{provider}.%{provider_tld}/vbatts/%{name}-utils
|
|
|
26b193 |
ln -s $(dirs +1 -l)/forward-journald-%{commit6} src/%{provider}.%{provider_tld}/projectatomic/forward-journald
|
|
|
b28b51 |
popd
|
|
|
b28b51 |
|
|
|
26b193 |
export DOCKER_GITCOMMIT="%{shortcommit0}/%{version}"
|
|
|
b215bf |
export DOCKER_BUILDTAGS='selinux btrfs_noversion'
|
|
|
26b193 |
export GOPATH=$(pwd)/_build:$(pwd)/vendor:%{gopath}:$(pwd)/forward-journald-%{commit6}/vendor
|
|
|
b28b51 |
|
|
|
311a84 |
# build %%{name} binary
|
|
|
f0cb50 |
sed -i '/rm -r autogen/d' hack/make.sh
|
|
|
94c7ff |
DOCKER_DEBUG=1 hack/make.sh dynbinary
|
|
|
b28b51 |
cp contrib/syntax/vim/LICENSE LICENSE-vim-syntax
|
|
|
b28b51 |
cp contrib/syntax/vim/README.md README-vim-syntax.md
|
|
|
b28b51 |
|
|
|
311a84 |
# build %%{name}-selinux
|
|
|
26b193 |
pushd %{name}-selinux-%{commit2}
|
|
|
d3ef29 |
make SHARE="%{_datadir}" TARGETS="%{modulenames}"
|
|
|
d3ef29 |
popd
|
|
|
d3ef29 |
|
|
|
d9c15b |
pushd $(pwd)/_build/src
|
|
|
26b193 |
# build %%{name}tarsum and %%{name}-fetch
|
|
|
311a84 |
go build %{provider}.%{provider_tld}/vbatts/%{name}-utils/cmd/%{name}-fetch
|
|
|
311a84 |
go build %{provider}.%{provider_tld}/vbatts/%{name}-utils/cmd/%{name}tarsum
|
|
|
26b193 |
go build %{provider}.%{provider_tld}/projectatomic/forward-journald
|
|
|
d9c15b |
popd
|
|
|
d9c15b |
|
|
|
311a84 |
# build %%{name} manpages
|
|
|
e34f9a |
man/md2man-all.sh
|
|
|
a2b5ed |
|
|
|
b28b51 |
%install
|
|
|
b28b51 |
# install binary
|
|
|
b28b51 |
install -d %{buildroot}%{_bindir}
|
|
|
94c7ff |
install -d %{buildroot}%{_libexecdir}/%{name}
|
|
|
b215bf |
|
|
|
311a84 |
# install %%{name}tarsum and %%{name}-fetch
|
|
|
311a84 |
install -p -m 755 _build/src/%{name}-fetch %{buildroot}%{_bindir}
|
|
|
311a84 |
install -p -m 755 _build/src/%{name}tarsum %{buildroot}%{_bindir}
|
|
|
b28b51 |
|
|
|
26b193 |
for x in bundles/latest; do
|
|
|
94c7ff |
if ! test -d $x/dynbinary; then
|
|
|
26b193 |
continue
|
|
|
94c7ff |
fi
|
|
|
26b193 |
install -p -m 755 $x/dynbinary/%{name}-%{version} %{buildroot}%{_bindir}/%{name}
|
|
|
26b193 |
install -p -m 755 $x/dynbinary/%{name}init-%{version} %{buildroot}%{_libexecdir}/%{name}/%{name}init
|
|
|
94c7ff |
break
|
|
|
94c7ff |
done
|
|
|
b28b51 |
|
|
|
b28b51 |
# install manpages
|
|
|
b28b51 |
install -d %{buildroot}%{_mandir}/man1
|
|
|
e34f9a |
install -p -m 644 man/man1/* %{buildroot}%{_mandir}/man1
|
|
|
b28b51 |
install -d %{buildroot}%{_mandir}/man5
|
|
|
e34f9a |
install -p -m 644 man/man5/* %{buildroot}%{_mandir}/man5
|
|
|
26b193 |
install -d %{buildroot}%{_mandir}/man8
|
|
|
26b193 |
install -p -m 644 man/man8/%{repo}*.8 %{buildroot}%{_mandir}/man8
|
|
|
b28b51 |
|
|
|
b28b51 |
# install bash completion
|
|
|
c4784f |
install -d %{buildroot}%{_datadir}/bash-completion/completions/
|
|
|
311a84 |
install -p -m 644 contrib/completion/bash/%{name} %{buildroot}%{_datadir}/bash-completion/completions/
|
|
|
b28b51 |
|
|
|
b215bf |
# install fish completion
|
|
|
26b193 |
# create, install and own %%{_datadir}/fish/vendor_completions.d until
|
|
|
b215bf |
# upstream fish provides it
|
|
|
b215bf |
install -dp %{buildroot}%{_datadir}/fish/vendor_completions.d
|
|
|
311a84 |
install -p -m 644 contrib/completion/fish/%{name}.fish %{buildroot}%{_datadir}/fish/vendor_completions.d
|
|
|
b215bf |
|
|
|
b215bf |
# install container logrotate cron script
|
|
|
b215bf |
install -dp %{buildroot}%{_sysconfdir}/cron.daily/
|
|
|
311a84 |
install -p -m 755 %{SOURCE5} %{buildroot}%{_sysconfdir}/cron.daily/%{name}-logrotate
|
|
|
b28b51 |
|
|
|
b28b51 |
# install vim syntax highlighting
|
|
|
b28b51 |
install -d %{buildroot}%{_datadir}/vim/vimfiles/{doc,ftdetect,syntax}
|
|
|
311a84 |
install -p -m 644 contrib/syntax/vim/doc/%{name}file.txt %{buildroot}%{_datadir}/vim/vimfiles/doc
|
|
|
311a84 |
install -p -m 644 contrib/syntax/vim/ftdetect/%{name}file.vim %{buildroot}%{_datadir}/vim/vimfiles/ftdetect
|
|
|
311a84 |
install -p -m 644 contrib/syntax/vim/syntax/%{name}file.vim %{buildroot}%{_datadir}/vim/vimfiles/syntax
|
|
|
b28b51 |
|
|
|
b215bf |
# install zsh completion
|
|
|
b215bf |
install -d %{buildroot}%{_datadir}/zsh/site-functions
|
|
|
311a84 |
install -p -m 644 contrib/completion/zsh/_%{name} %{buildroot}%{_datadir}/zsh/site-functions
|
|
|
b215bf |
|
|
|
b28b51 |
# install udev rules
|
|
|
275132 |
install -d %{buildroot}%{_udevrulesdir}
|
|
|
311a84 |
install -p -m 755 contrib/udev/80-%{name}.rules %{buildroot}%{_udevrulesdir}
|
|
|
b28b51 |
|
|
|
b28b51 |
# install storage dir
|
|
|
311a84 |
install -d -m 700 %{buildroot}%{_sharedstatedir}/%{name}
|
|
|
b28b51 |
|
|
|
b28b51 |
# install systemd/init scripts
|
|
|
b28b51 |
install -d %{buildroot}%{_unitdir}
|
|
|
b28b51 |
install -p -m 644 %{SOURCE1} %{buildroot}%{_unitdir}
|
|
|
b215bf |
|
|
|
b28b51 |
# for additional args
|
|
|
b28b51 |
install -d %{buildroot}%{_sysconfdir}/sysconfig/
|
|
|
311a84 |
install -p -m 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/sysconfig/%{name}
|
|
|
311a84 |
install -p -m 644 %{SOURCE4} %{buildroot}%{_sysconfdir}/sysconfig/%{name}-storage
|
|
|
311a84 |
install -p -m 644 %{SOURCE7} %{buildroot}%{_sysconfdir}/sysconfig/%{name}-network
|
|
|
d9c15b |
|
|
|
d3ef29 |
# install SELinux interfaces
|
|
|
d3ef29 |
%_format INTERFACES $x.if
|
|
|
d3ef29 |
install -d %{buildroot}%{_datadir}/selinux/devel/include/%{moduletype}
|
|
|
26b193 |
install -p -m 644 %{name}-selinux-%{commit2}/$INTERFACES %{buildroot}%{_datadir}/selinux/devel/include/%{moduletype}
|
|
|
d3ef29 |
|
|
|
d3ef29 |
# install policy modules
|
|
|
d3ef29 |
%_format MODULES $x.pp.bz2
|
|
|
d3ef29 |
install -d %{buildroot}%{_datadir}/selinux/packages
|
|
|
26b193 |
install -m 0644 %{name}-selinux-%{commit2}/$MODULES %{buildroot}%{_datadir}/selinux/packages
|
|
|
d3ef29 |
|
|
|
e34f9a |
%if 0%{?with_unit_test}
|
|
|
311a84 |
install -d -m 0755 %{buildroot}%{_sharedstatedir}/%{name}-unit-test/
|
|
|
311a84 |
cp -pav VERSION Dockerfile %{buildroot}%{_sharedstatedir}/%{name}-unit-test/.
|
|
|
311a84 |
for d in */ ; do
|
|
|
311a84 |
cp -a $d %{buildroot}%{_sharedstatedir}/%{name}-unit-test/
|
|
|
e34f9a |
done
|
|
|
311a84 |
# remove %%{name}.initd as it requires /sbin/runtime no packages in Fedora
|
|
|
311a84 |
rm -rf %{buildroot}%{_sharedstatedir}/%{name}-unit-test/contrib/init/openrc/%{name}.initd
|
|
|
e34f9a |
%endif
|
|
|
e34f9a |
|
|
|
311a84 |
# remove %%{name}-selinux rpm spec file
|
|
|
26b193 |
rm -rf %{name}-selinux-%{commit2}/%{name}-selinux.spec
|
|
|
d3ef29 |
|
|
|
31f2c3 |
# don't install secrets dir
|
|
|
31f2c3 |
# install -d -p -m 750 %{buildroot}/%{_datadir}/rhel/secrets
|
|
|
d9c15b |
# rhbz#1110876 - update symlinks for subscription management
|
|
|
31f2c3 |
#ln -s %{_sysconfdir}/pki/entitlement %{buildroot}%{_datadir}/rhel/secrets/etc-pki-entitlement
|
|
|
31f2c3 |
#ln -s %{_sysconfdir}/rhsm %{buildroot}%{_datadir}/rhel/secrets/rhsm
|
|
|
31f2c3 |
#ln -s %{_sysconfdir}/yum.repos.d/redhat.repo %{buildroot}%{_datadir}/rhel/secrets/rhel7.repo
|
|
|
b215bf |
|
|
|
31f2c3 |
#mkdir -p %{buildroot}/etc/%{name}/certs.d/redhat.{com,io}
|
|
|
31f2c3 |
#ln -s %{_sysconfdir}/rhsm/ca/redhat-uep.pem %{buildroot}/%{_sysconfdir}/%{name}/certs.d/redhat.com/redhat-ca.crt
|
|
|
31f2c3 |
#ln -s %{_sysconfdir}/rhsm/ca/redhat-uep.pem %{buildroot}/%{_sysconfdir}/%{name}/certs.d/redhat.io/redhat-ca.crt
|
|
|
31f2c3 |
mkdir -p %{buildroot}/etc/%{name}/certs.d
|
|
|
b215bf |
|
|
|
311a84 |
# install %%{name} config directory
|
|
|
311a84 |
install -dp %{buildroot}%{_sysconfdir}/%{name}/
|
|
|
b215bf |
|
|
|
311a84 |
# install %%{name}-storage-setup
|
|
|
26b193 |
pushd %{name}-storage-setup-%{commit1}
|
|
|
275132 |
install -d %{buildroot}%{_bindir}
|
|
|
311a84 |
install -p -m 755 %{name}-storage-setup.sh %{buildroot}%{_bindir}/%{name}-storage-setup
|
|
|
275132 |
install -d %{buildroot}%{_unitdir}
|
|
|
311a84 |
install -p -m 644 %{name}-storage-setup.service %{buildroot}%{_unitdir}
|
|
|
275132 |
install -d %{buildroot}%{dss_libdir}
|
|
|
311a84 |
install -p -m 644 %{name}-storage-setup.conf %{buildroot}%{dss_libdir}/%{name}-storage-setup
|
|
|
699406 |
install -p -m 755 libdss.sh %{buildroot}%{dss_libdir}
|
|
|
e34f9a |
install -d %{buildroot}%{_sysconfdir}/sysconfig
|
|
|
311a84 |
install -p -m 644 %{name}-storage-setup-override.conf %{buildroot}%{_sysconfdir}/sysconfig/%{name}-storage-setup
|
|
|
275132 |
install -d %{buildroot}%{_mandir}/man1
|
|
|
311a84 |
install -p -m 644 %{name}-storage-setup.1 %{buildroot}%{_mandir}/man1
|
|
|
275132 |
popd
|
|
|
275132 |
|
|
|
26b193 |
# install forward-journald
|
|
|
26b193 |
install -d %{buildroot}%{_bindir}
|
|
|
26b193 |
install -p -m 700 _build/src/forward-journald %{buildroot}%{_bindir}
|
|
|
26b193 |
|
|
|
b215bf |
%check
|
|
|
311a84 |
[ ! -w /run/%{name}.sock ] || {
|
|
|
b215bf |
mkdir test_dir
|
|
|
b215bf |
pushd test_dir
|
|
|
26b193 |
git clone https://github.com/projectatomic/docker.git -b rhel7-1.9
|
|
|
311a84 |
pushd %{name}
|
|
|
b215bf |
make test
|
|
|
b215bf |
popd
|
|
|
b215bf |
popd
|
|
|
b215bf |
}
|
|
|
b28b51 |
|
|
|
b28b51 |
%pre
|
|
|
311a84 |
getent passwd %{name}root > /dev/null || %{_sbindir}/useradd -r -d %{_sharedstatedir}/%{name} -s /sbin/nologin -c "Docker User" %{name}root
|
|
|
b28b51 |
exit 0
|
|
|
b28b51 |
|
|
|
b28b51 |
%post
|
|
|
311a84 |
%systemd_post %{name}.service
|
|
|
b28b51 |
|
|
|
d3ef29 |
%post selinux
|
|
|
d3ef29 |
# Install all modules in a single transaction
|
|
|
d3ef29 |
%_format MODULES %{_datadir}/selinux/packages/$x.pp.bz2
|
|
|
d3ef29 |
%{_sbindir}/semodule -n -s %{selinuxtype} -i $MODULES
|
|
|
d3ef29 |
if %{_sbindir}/selinuxenabled ; then
|
|
|
311a84 |
%{_sbindir}/load_policy
|
|
|
311a84 |
%relabel_files
|
|
|
311a84 |
if [ $1 -eq 1 ]; then
|
|
|
26b193 |
restorecon -R %{_sharedstatedir}/%{name} &> /dev/null || :
|
|
|
311a84 |
fi
|
|
|
d3ef29 |
fi
|
|
|
d3ef29 |
|
|
|
b28b51 |
%preun
|
|
|
311a84 |
%systemd_preun %{name}.service
|
|
|
b28b51 |
|
|
|
b28b51 |
%postun
|
|
|
311a84 |
%systemd_postun_with_restart %{name}.service
|
|
|
b28b51 |
|
|
|
d3ef29 |
%postun selinux
|
|
|
d3ef29 |
if [ $1 -eq 0 ]; then
|
|
|
d3ef29 |
%{_sbindir}/semodule -n -r %{modulenames} &> /dev/null || :
|
|
|
d3ef29 |
if %{_sbindir}/selinuxenabled ; then
|
|
|
d3ef29 |
%{_sbindir}/load_policy
|
|
|
d3ef29 |
%relabel_files
|
|
|
d3ef29 |
fi
|
|
|
d3ef29 |
fi
|
|
|
d3ef29 |
|
|
|
b28b51 |
%files
|
|
|
d9c15b |
%doc AUTHORS CHANGELOG.md CONTRIBUTING.md MAINTAINERS NOTICE
|
|
|
b28b51 |
%doc LICENSE* README*.md
|
|
|
26b193 |
%{_mandir}/man1/%{name}*.1.gz
|
|
|
26b193 |
%{_mandir}/man5/*.5.gz
|
|
|
26b193 |
%{_mandir}/man8/*.8.gz
|
|
|
311a84 |
%{_bindir}/%{name}
|
|
|
31f2c3 |
#%dir %{_datadir}/rhel
|
|
|
31f2c3 |
#%dir %{_datadir}/rhel/secrets
|
|
|
31f2c3 |
#%{_datadir}/rhel/secrets/etc-pki-entitlement
|
|
|
31f2c3 |
#%{_datadir}/rhel/secrets/rhel7.repo
|
|
|
31f2c3 |
#%{_datadir}/rhel/secrets/rhsm
|
|
|
311a84 |
%{_libexecdir}/%{name}
|
|
|
311a84 |
%{_unitdir}/%{name}.service
|
|
|
311a84 |
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
|
|
|
311a84 |
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}-storage
|
|
|
311a84 |
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}-network
|
|
|
311a84 |
%{_datadir}/bash-completion/completions/%{name}
|
|
|
311a84 |
%dir %{_sharedstatedir}/%{name}
|
|
|
311a84 |
%{_udevrulesdir}/80-%{name}.rules
|
|
|
b215bf |
%dir %{_datadir}/fish/vendor_completions.d/
|
|
|
311a84 |
%{_datadir}/fish/vendor_completions.d/%{name}.fish
|
|
|
b28b51 |
%dir %{_datadir}/vim/vimfiles/doc
|
|
|
311a84 |
%{_datadir}/vim/vimfiles/doc/%{name}file.txt
|
|
|
b28b51 |
%dir %{_datadir}/vim/vimfiles/ftdetect
|
|
|
311a84 |
%{_datadir}/vim/vimfiles/ftdetect/%{name}file.vim
|
|
|
b28b51 |
%dir %{_datadir}/vim/vimfiles/syntax
|
|
|
311a84 |
%{_datadir}/vim/vimfiles/syntax/%{name}file.vim
|
|
|
b215bf |
%dir %{_datadir}/zsh/site-functions
|
|
|
311a84 |
%{_datadir}/zsh/site-functions/_%{name}
|
|
|
311a84 |
%{_sysconfdir}/%{name}
|
|
|
311a84 |
%{_bindir}/%{name}-fetch
|
|
|
311a84 |
%{_bindir}/%{name}tarsum
|
|
|
311a84 |
# %%{name}-storage-setup specific
|
|
|
311a84 |
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}-storage-setup
|
|
|
311a84 |
%{_unitdir}/%{name}-storage-setup.service
|
|
|
311a84 |
%{_bindir}/%{name}-storage-setup
|
|
|
311a84 |
%{dss_libdir}/%{name}-storage-setup
|
|
|
699406 |
%{dss_libdir}/libdss.sh
|
|
|
e34f9a |
|
|
|
e34f9a |
%if 0%{?with_unit_test}
|
|
|
e34f9a |
%files unit-test
|
|
|
311a84 |
%{_sharedstatedir}/%{name}-unit-test/
|
|
|
e34f9a |
%endif
|
|
|
b215bf |
|
|
|
b215bf |
%files logrotate
|
|
|
311a84 |
%doc README.%{name}-logrotate
|
|
|
311a84 |
%{_sysconfdir}/cron.daily/%{name}-logrotate
|
|
|
b28b51 |
|
|
|
d3ef29 |
%files selinux
|
|
|
26b193 |
%doc %{name}-selinux-%{commit2}/README.md
|
|
|
d3ef29 |
%{_datadir}/selinux/*
|
|
|
d3ef29 |
|
|
|
26b193 |
%files forward-journald
|
|
|
26b193 |
%doc forward-journald-%{commit6}/LICENSE
|
|
|
26b193 |
%doc forward-journald-%{commit6}/README.md
|
|
|
26b193 |
%{_bindir}/forward-journald
|
|
|
26b193 |
|
|
|
b28b51 |
%changelog
|
|
|
bfbe87 |
* Tue Apr 05 2016 Jim Perrin <jperrin@centos.org> - 1.9.1-25
|
|
|
bfbe87 |
- Add patch for aarch64 builds
|
|
|
bfbe87 |
|
|
|
31f2c3 |
* Fri Apr 1 2016 Johnny Hughes <johnny@centos.org> - 1.9.1-25
|
|
|
31f2c3 |
- - Manual CentOS debreanding
|
|
|
31f2c3 |
|
|
|
26b193 |
* Wed Mar 23 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-25
|
|
|
26b193 |
- Resolves: rhbz#1320302 - Backport fix for --cgroup-parent in docker
|
|
|
26b193 |
- same commits as release -24, only added bug number
|
|
|
26b193 |
|
|
|
26b193 |
* Wed Mar 23 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-24
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#78ee77d
|
|
|
26b193 |
- built docker-selinux commit#8718b62
|
|
|
26b193 |
- built d-s-s commit#c6f0553
|
|
|
26b193 |
- built docker-utils commit#b851c03
|
|
|
26b193 |
- built forward-journald commit#77e02a9
|
|
|
26b193 |
|
|
|
26b193 |
* Thu Mar 17 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-23
|
|
|
26b193 |
- Resolves: rhbz#1318360 - delete bounds checking rules
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#f97fb16
|
|
|
26b193 |
- built docker-selinux commit#8718b62
|
|
|
26b193 |
- built d-s-s commit#c6f0553
|
|
|
26b193 |
- built docker-utils commit#b851c03
|
|
|
26b193 |
- built forward-journald commit#77e02a9
|
|
|
26b193 |
|
|
|
26b193 |
* Tue Mar 15 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-22
|
|
|
26b193 |
- Resolves: rhbz#1317991 - Set Delegate=yes for cgroup transient units
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#f97fb16
|
|
|
26b193 |
- built docker-selinux commit#69be4dc
|
|
|
26b193 |
- built d-s-s commit#03dfc7b
|
|
|
26b193 |
- built docker-utils commit#b851c03
|
|
|
26b193 |
- built forward-journald commit#77e02a9
|
|
|
26b193 |
|
|
|
26b193 |
* Mon Mar 14 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-21
|
|
|
26b193 |
- Resolves: rhbz#1317662 - include manpage for docker daemon (corrected)
|
|
|
26b193 |
|
|
|
26b193 |
* Mon Mar 14 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-20
|
|
|
26b193 |
- Resolves: rhbz#1317662 - include manpage for docker run
|
|
|
26b193 |
- Resolves: rhbz#1317627 - ensure that we join all the cgroups
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#0275914
|
|
|
26b193 |
- built docker-selinux commit#69be4dc
|
|
|
26b193 |
- built d-s-s commit#03dfc7b
|
|
|
26b193 |
- built docker-utils commit#b851c03
|
|
|
26b193 |
- built forward-journald commit#77e02a9
|
|
|
26b193 |
|
|
|
26b193 |
* Wed Mar 09 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-19
|
|
|
26b193 |
- Resolves: rhbz#1316190 - set NotifyAccess=all in unitfile
|
|
|
26b193 |
|
|
|
26b193 |
* Tue Mar 08 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-18
|
|
|
26b193 |
- Resolves: rhbz#1286765 - set TimeoutStartSec=0 in unitfile
|
|
|
26b193 |
- Resolves: rhbz#1298363, rhbz#1300076, rhbz#1304038, rhbz#1302418
|
|
|
26b193 |
- built forward-journald commit#77e02a9 - other subpackage commits same as
|
|
|
26b193 |
previous build
|
|
|
26b193 |
|
|
|
26b193 |
* Tue Mar 08 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.1-17
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#185277d
|
|
|
26b193 |
- built docker-selinux commit#e2e1f22
|
|
|
26b193 |
- built d-s-s commit#03dfc7b
|
|
|
26b193 |
- built docker-utils commit#b851c03
|
|
|
26b193 |
- built forward-journald commit#48b9599
|
|
|
26b193 |
|
|
|
26b193 |
* Tue Feb 02 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-16
|
|
|
26b193 |
- Resolves: rhbz#1304038 - conflict with openshift 3.1
|
|
|
26b193 |
- allow golang >= 1.4.2
|
|
|
26b193 |
|
|
|
26b193 |
* Thu Jan 28 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-15
|
|
|
26b193 |
- Resolves: rhbz#1302411
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#50e78a0
|
|
|
26b193 |
- built docker-selinux commit#e2e1f22
|
|
|
26b193 |
- built d-s-s commit#1c2b95b
|
|
|
26b193 |
- built docker-utils commit#dab51ac
|
|
|
26b193 |
|
|
|
26b193 |
* Tue Jan 26 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-14
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#fe0b590
|
|
|
26b193 |
- built docker-selinux commit#e2e1f22
|
|
|
26b193 |
- built d-s-s commit#1c2b95b
|
|
|
26b193 |
- built docker-utils commit#dab51ac
|
|
|
26b193 |
|
|
|
26b193 |
* Mon Jan 25 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-13
|
|
|
26b193 |
- Resolves: rhbz#1301199 - do not append distro tag to docker version
|
|
|
26b193 |
|
|
|
26b193 |
* Wed Jan 20 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-12
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#2dbcc37
|
|
|
26b193 |
- built docker-selinux commit#e2e1f22
|
|
|
26b193 |
- built d-s-s commit#1c2b95b
|
|
|
26b193 |
- built docker-utils commit#dab51ac
|
|
|
26b193 |
|
|
|
26b193 |
* Fri Jan 15 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-11
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#2dbcc37
|
|
|
26b193 |
- built docker-selinux commit#e2e1f22
|
|
|
26b193 |
- built d-s-s commit#1c2b95b
|
|
|
26b193 |
- built docker-utils commit#dab51ac
|
|
|
26b193 |
|
|
|
26b193 |
* Mon Jan 11 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-10
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#26797f7
|
|
|
26b193 |
- built docker-selinux commit#e2e1f22
|
|
|
26b193 |
- built d-s-s commit#1c2b95b
|
|
|
26b193 |
- built docker-utils commit#dab51ac
|
|
|
26b193 |
|
|
|
26b193 |
* Sat Dec 12 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-9
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#401dfee
|
|
|
26b193 |
- built docker-selinux commit#e2e1f22
|
|
|
26b193 |
- built d-s-s commit#91d6cfd
|
|
|
26b193 |
- built docker-utils commit#dab51ac
|
|
|
26b193 |
|
|
|
26b193 |
* Fri Dec 04 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-8
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#32fb322
|
|
|
26b193 |
- built docker-selinux commit#441f312
|
|
|
26b193 |
- built d-s-s commit#e38b94d
|
|
|
26b193 |
- built docker-utils commit#dab51ac
|
|
|
26b193 |
|
|
|
26b193 |
* Wed Dec 02 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-7
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#32fb322
|
|
|
26b193 |
- built docker-selinux commit#441f312
|
|
|
26b193 |
- built d-s-s commit#0814c26
|
|
|
26b193 |
- built docker-utils commit#dab51ac
|
|
|
26b193 |
|
|
|
26b193 |
* Wed Dec 02 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-6
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#32fb322
|
|
|
26b193 |
- built docker-selinux commit#441f312
|
|
|
26b193 |
- built d-s-s commit#0814c26
|
|
|
26b193 |
- built docker-utils commit#dab51ac
|
|
|
26b193 |
|
|
|
26b193 |
* Mon Nov 30 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-5
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#32fb322
|
|
|
26b193 |
- built docker-selinux commit#dbfad05
|
|
|
26b193 |
- built d-s-s commit#0814c26
|
|
|
26b193 |
- built docker-utils commit#dab51ac
|
|
|
26b193 |
|
|
|
26b193 |
* Wed Nov 25 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-4
|
|
|
26b193 |
- Resolves: rhbz#1275399
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#390a466
|
|
|
26b193 |
- built docker-selinux commit#dbfad05
|
|
|
26b193 |
- built d-s-s commit#0814c26
|
|
|
26b193 |
- built docker-utils commit#dab51ac
|
|
|
26b193 |
|
|
|
26b193 |
* Tue Nov 24 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-3
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#698d463
|
|
|
26b193 |
- built docker-selinux commit#dbfad05
|
|
|
26b193 |
- built d-s-s commit#0814c26
|
|
|
26b193 |
- built docker-utils commit#dab51ac
|
|
|
26b193 |
|
|
|
26b193 |
* Tue Nov 24 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-2
|
|
|
26b193 |
- Resolves: rhbz#1263394 - set unitfile to 5 mins
|
|
|
26b193 |
|
|
|
26b193 |
* Tue Nov 24 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-1
|
|
|
26b193 |
- use correct version number, no other change since last build
|
|
|
26b193 |
|
|
|
26b193 |
* Tue Nov 24 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-11
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#f1cda67
|
|
|
26b193 |
- built docker-selinux commit#dbfad05
|
|
|
26b193 |
- built d-s-s commit#0814c26
|
|
|
26b193 |
- built docker-utils commit#dab51ac
|
|
|
26b193 |
|
|
|
26b193 |
* Mon Nov 23 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-10
|
|
|
26b193 |
- Resolves: rhbz#1283718
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#0ba2491
|
|
|
26b193 |
- built docker-selinux commit#dbfad05
|
|
|
26b193 |
- built d-s-s commit#0814c26
|
|
|
26b193 |
- built docker-utils commit#dab51ac
|
|
|
26b193 |
|
|
|
26b193 |
* Thu Nov 19 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-9
|
|
|
26b193 |
- built docker @projectatomic/rhel7-1.9 commit#eb84909
|
|
|
26b193 |
- built docker-selinux commit#dbfad05
|
|
|
26b193 |
- built d-s-s commit#c638a60
|
|
|
26b193 |
- built docker-utils commit#dab51ac
|
|
|
3a39d3 |
|
|
|
94c7ff |
* Wed Nov 11 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-10
|
|
|
94c7ff |
- Resolves: rhbz#1281805, rhbz#1271229, rhbz#1276346
|
|
|
94c7ff |
- Resolves: rhbz#1275376, rhbz#1282898
|
|
|
94c7ff |
|
|
|
94c7ff |
* Wed Nov 11 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-9
|
|
|
94c7ff |
- Resolves: rhbz#1280068 - Build docker with DWARF
|
|
|
94c7ff |
- Move back to 1.8.2
|
|
|
94c7ff |
- built docker @rhatdan/rhel7-1.8 commit#a01dc02
|
|
|
94c7ff |
- built docker-selinux commit#dbfad05
|
|
|
94c7ff |
- built d-s-s commit#e9722cc
|
|
|
94c7ff |
- built docker-utils commit#dab51ac
|
|
|
94c7ff |
|
|
|
94c7ff |
* Mon Nov 02 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-8
|
|
|
94c7ff |
- Resolves: rhbz#1225093 (partially)
|
|
|
94c7ff |
- built docker @projectatomic/rhel7-1.9 commit#cdd3941
|
|
|
94c7ff |
- built docker-selinux commit#dbfad05
|
|
|
94c7ff |
- built d-s-s commit#e9722cc
|
|
|
94c7ff |
- built docker-utils commit#dab51ac
|
|
|
94c7ff |
|
|
|
94c7ff |
* Wed Oct 28 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-7
|
|
|
94c7ff |
- Resolves: rhbz#1275554
|
|
|
94c7ff |
- built docker @projectatomic/rhel7-1.9 commit#61fd965
|
|
|
94c7ff |
- built docker-selinux commit#dbfad05
|
|
|
94c7ff |
- built d-s-s commit#e9722cc
|
|
|
94c7ff |
- built docker-utils commit#dab51ac
|
|
|
94c7ff |
|
|
|
94c7ff |
* Wed Oct 28 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-6
|
|
|
94c7ff |
- built docker @projectatomic/rhel7-1.9 commit#166d43b
|
|
|
94c7ff |
- built docker-selinux commit#dbfad05
|
|
|
94c7ff |
- built d-s-s commit#e9722cc
|
|
|
94c7ff |
- built docker-utils commit#dab51ac
|
|
|
94c7ff |
|
|
|
94c7ff |
* Mon Oct 26 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-5
|
|
|
94c7ff |
- built docker @projectatomic/rhel7-1.9 commit#6897d78
|
|
|
94c7ff |
- built docker-selinux commit#dbfad05
|
|
|
94c7ff |
- built d-s-s commit#e9722cc
|
|
|
94c7ff |
- built docker-utils commit#dab51ac
|
|
|
94c7ff |
|
|
|
94c7ff |
* Fri Oct 23 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-4
|
|
|
94c7ff |
- built docker @projectatomic/rhel7-1.9 commit#0bb2bf4
|
|
|
94c7ff |
- built docker-selinux commit#dbfad05
|
|
|
94c7ff |
- built d-s-s commit#e9722cc
|
|
|
94c7ff |
- built docker-utils commit#dab51ac
|
|
|
94c7ff |
|
|
|
94c7ff |
* Thu Oct 22 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-3
|
|
|
94c7ff |
- built docker @projectatomic/rhel7-1.9 commit#1ea7f30
|
|
|
94c7ff |
- built docker-selinux commit#dbfad05
|
|
|
94c7ff |
- built d-s-s commit#01df512
|
|
|
94c7ff |
- built docker-utils commit#dab51ac
|
|
|
94c7ff |
|
|
|
94c7ff |
* Thu Oct 22 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-2
|
|
|
94c7ff |
- built docker @projectatomic/rhel7-1.9 commit#1ea7f30
|
|
|
94c7ff |
- built docker-selinux commit#fe61432
|
|
|
94c7ff |
- built d-s-s commit#01df512
|
|
|
94c7ff |
- built docker-utils commit#dab51ac
|
|
|
94c7ff |
|
|
|
853e82 |
* Wed Oct 14 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-8
|
|
|
853e82 |
- built docker @rhatdan/rhel7-1.8 commit#a01dc02
|
|
|
853e82 |
- built docker-selinux master commit#e2a5226
|
|
|
853e82 |
- built d-s-s master commit#6898d43
|
|
|
853e82 |
- built docker-utils master commit#dab51ac
|
|
|
853e82 |
|
|
|
311a84 |
* Fri Oct 09 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-7
|
|
|
311a84 |
- https://github.com/rhatdan/docker/pull/127 (changes for libcontainer/user)
|
|
|
311a84 |
- https://github.com/rhatdan/docker/pull/128 (/dev mount from host)
|
|
|
311a84 |
|
|
|
311a84 |
* Wed Oct 07 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-6
|
|
|
311a84 |
- built docker @rhatdan/rhel7-1.8 commit#bb472f0
|
|
|
311a84 |
- built docker-selinux master commit#44abd21
|
|
|
311a84 |
- built d-s-s master commit#6898d43
|
|
|
311a84 |
- built docker-utils master commit#dab51ac
|
|
|
311a84 |
|
|
|
311a84 |
* Wed Sep 30 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-5
|
|
|
311a84 |
- Resolves: rhbz#1267743
|
|
|
311a84 |
- https://github.com/docker/docker/pull/16639
|
|
|
311a84 |
- https://github.com/opencontainers/runc/commit/c9d58506297ed6c86c9d8a91d861e4de3772e699
|
|
|
311a84 |
|
|
|
311a84 |
* Wed Sep 30 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-4
|
|
|
311a84 |
- built docker @rhatdan/rhel7-1.8 commit#23f26d9
|
|
|
311a84 |
- built docker-selinux master commit#2ed73eb
|
|
|
311a84 |
- built d-s-s master commit#6898d43
|
|
|
311a84 |
- built docker-utils master commit#dab51ac
|
|
|
311a84 |
|
|
|
311a84 |
* Wed Sep 30 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8.2-3
|
|
|
311a84 |
- Resolves: rhbz#1264557 (extras-rhel-7.1.6) - rebase to 1.8.2
|
|
|
311a84 |
- Resolves: rhbz#1265810 (extras-rhel-7.2) - rebase to 1.8.2
|
|
|
311a84 |
- built docker @rhatdan/rhel7-1.8 commit#23f26d9
|
|
|
311a84 |
- built docker-selinux master commit#d6560f8
|
|
|
311a84 |
- built d-s-s master commit#6898d43
|
|
|
311a84 |
- built docker-utils master commit#dab51ac
|
|
|
311a84 |
- use golang == 1.4.2
|
|
|
311a84 |
|
|
|
311a84 |
* Mon Sep 21 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.8.2-2
|
|
|
311a84 |
- built docker-selinux master commit#d6560f8
|
|
|
311a84 |
|
|
|
311a84 |
* Fri Sep 18 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.8.2-1
|
|
|
311a84 |
- package only provides docker, docker-selinux and docker-logrotate
|
|
|
311a84 |
- Resolves: rhbz#1261329, rhbz#1263394, rhbz#1264090
|
|
|
311a84 |
- built docker @rhatdan/rhel7-1.8 commit#23f26d9
|
|
|
311a84 |
- built d-s-s master commit#6898d43
|
|
|
311a84 |
- built docker-selinux master commit#b5281b7
|
|
|
311a84 |
- built docker-utils master commit#dab51ac
|
|
|
97eaeb |
|
|
|
699406 |
* Thu Aug 27 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-115
|
|
|
699406 |
- Resolves: rhbz#1252421
|
|
|
699406 |
- built docker @rhatdan/rhel7-1.7 commit#446ad9b
|
|
|
699406 |
- built docker-py @rhatdan/master commit#54a154d
|
|
|
699406 |
- built d-s-s master commit#d3b9ba7
|
|
|
699406 |
- built atomic master commit#011a826
|
|
|
699406 |
- built docker-selinux master commit#6267b83
|
|
|
699406 |
- built docker-utils master commit#dab51ac
|
|
|
699406 |
|
|
|
699406 |
* Mon Aug 24 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-114
|
|
|
699406 |
- Resolves: rhbz#1255874 - (#1255488 is for 7.2)
|
|
|
699406 |
|
|
|
699406 |
* Fri Aug 21 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-113
|
|
|
699406 |
- Resolves: rhbz#1255488
|
|
|
699406 |
- built docker @rhatdan/rhel7-1.7 commit#4136d06
|
|
|
699406 |
- built docker-py @rhatdan/master commit#54a154d
|
|
|
699406 |
- built d-s-s master commit#d3b9ba7
|
|
|
699406 |
- built atomic master commit#995a223
|
|
|
699406 |
- built docker-selinux master commit#39a894e
|
|
|
699406 |
- built docker-utils master commit#dab51ac
|
|
|
699406 |
|
|
|
699406 |
* Thu Aug 20 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-112
|
|
|
699406 |
- Resolves: rhbz#1255051
|
|
|
699406 |
- built docker @rhatdan/rhel7-1.7 commit#4136d06
|
|
|
699406 |
- built docker-py @rhatdan/master commit#54a154d
|
|
|
699406 |
- built d-s-s master commit#ac1b30e
|
|
|
699406 |
- built atomic master commit#53169d5
|
|
|
699406 |
- built docker-selinux master commit#39a894e
|
|
|
699406 |
- built docker-utils master commit#dab51ac
|
|
|
699406 |
|
|
|
699406 |
* Tue Aug 18 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-111
|
|
|
699406 |
- built docker @rhatdan/rhel7-1.7 commit#9fe211a
|
|
|
699406 |
- built docker-py @rhatdan/master commit#54a154d
|
|
|
699406 |
- built d-s-s master commit#ac1b30e
|
|
|
699406 |
- built atomic master commit#53169d5
|
|
|
699406 |
- built docker-selinux master commit#39a894e
|
|
|
699406 |
- built docker-utils master commit#dab51ac
|
|
|
699406 |
|
|
|
699406 |
* Mon Aug 17 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-110
|
|
|
699406 |
- built docker @rhatdan/rhel7-1.7 commit#ba2de95
|
|
|
699406 |
- built docker-py @rhatdan/master commit#54a154d
|
|
|
699406 |
- built d-s-s master commit#ac1b30e
|
|
|
699406 |
- built atomic master commit#53169d5
|
|
|
699406 |
- built docker-selinux master commit#39a894e
|
|
|
699406 |
- built docker-utils master commit#dab51ac
|
|
|
699406 |
|
|
|
699406 |
* Mon Aug 10 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-109
|
|
|
699406 |
- Resolves: rhbz#1249651 - unpin python-requests requirement
|
|
|
699406 |
- update python-websocket-client to 0.32.0
|
|
|
b1aebf |
|
|
|
e34f9a |
* Tue Jul 28 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-108
|
|
|
e34f9a |
- built docker @rhatdan/rhel7-1.7 commit#3043001
|
|
|
e34f9a |
- built docker-py @rhatdan/master commit#54a154d
|
|
|
e34f9a |
- built d-s-s master commit#b152398
|
|
|
e34f9a |
- built atomic master commit#a4442c4
|
|
|
e34f9a |
- built docker-selinux master commit#bebf349
|
|
|
e34f9a |
- built docker-utils master commit#dab51ac
|
|
|
e34f9a |
|
|
|
e34f9a |
* Fri Jul 24 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-107
|
|
|
e34f9a |
- built docker @rhatdan/rhel7-1.7 commit#3043001
|
|
|
e34f9a |
- built docker-py @rhatdan/master commit#54a154d
|
|
|
e34f9a |
- built d-s-s master commit#b152398
|
|
|
e34f9a |
- built atomic master commit#52d695c
|
|
|
e34f9a |
- built docker-selinux master commit#bebf349
|
|
|
e34f9a |
|
|
|
e34f9a |
* Thu Jul 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-106
|
|
|
e34f9a |
- built docker @rhatdan/rhel7-1.7 commit#3043001
|
|
|
e34f9a |
- built docker-py @rhatdan/master commit#54a154d
|
|
|
e34f9a |
- built d-s-s master commit#b152398
|
|
|
e34f9a |
- built atomic master commit#52d695c
|
|
|
e34f9a |
- built docker-selinux master commit#bebf349
|
|
|
e34f9a |
|
|
|
e34f9a |
* Thu Jul 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-105
|
|
|
e34f9a |
- Resolves: rhbz#1245325
|
|
|
e34f9a |
- built docker @rhatdan/rhel7-1.7 commit#ac162a3
|
|
|
e34f9a |
- built docker-py @rhatdan/master commit#54a154d
|
|
|
e34f9a |
- built d-s-s master commit#b152398
|
|
|
e34f9a |
- built atomic master commit#ac162a3
|
|
|
e34f9a |
- built docker-selinux master commit#ac162a3
|
|
|
e34f9a |
- disable dockerfetch and dockertarsum
|
|
|
e34f9a |
|
|
|
e34f9a |
* Wed Jul 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-104
|
|
|
e34f9a |
- use a common release tag for all subpackages, much easier to update via
|
|
|
e34f9a |
rpmdev-bumpspec
|
|
|
e34f9a |
|
|
|
e34f9a |
* Wed Jul 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.1-1
|
|
|
e34f9a |
- built docker @rhatdan/rhel7-1.7 commit#d2fbc0b
|
|
|
e34f9a |
- built docker-py @rhatdan/master commit#54a154d
|
|
|
e34f9a |
- built d-s-s master commit#b152398
|
|
|
e34f9a |
- built atomic master commit#d2fbc0b
|
|
|
e34f9a |
- built docker-selinux master commit#d2fbc0b
|
|
|
e34f9a |
|
|
|
e34f9a |
* Fri Jul 17 2015 Jonathan Lebon <jlebon@redhat.com> - 1.7.0-5
|
|
|
e34f9a |
- Add patch for atomic.sysconfig
|
|
|
e34f9a |
- Related: https://github.com/projectatomic/atomic/pull/94
|
|
|
e34f9a |
|
|
|
e34f9a |
* Wed Jul 15 2015 Jan Chaloupka <jchaloup@redhat.com> - 1.7.0-3.1
|
|
|
e34f9a |
- Add unit-test subpackage
|
|
|
e34f9a |
|
|
|
e34f9a |
* Thu Jul 09 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.0-3
|
|
|
e34f9a |
- built docker @rhatdan/rhel7-1.7 commit#4740812
|
|
|
e34f9a |
|
|
|
e34f9a |
* Wed Jul 08 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.0-2
|
|
|
e34f9a |
- increment all release tags to make koji happy
|
|
|
e34f9a |
|
|
|
e34f9a |
* Wed Jul 08 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.7.0-1
|
|
|
e34f9a |
- Resolves: rhbz#1241186 - rebase to v1.7.0 + rh patches
|
|
|
e34f9a |
- built docker @rhatdan/rhel7-1.7 commit#0f235fc
|
|
|
e34f9a |
- built docker-selinux master commit#bebf349
|
|
|
e34f9a |
- built d-s-s master commit#e9c3a4c
|
|
|
e34f9a |
- built atomic master commit#f133684
|
|
|
e34f9a |
- rebase python-docker-py to upstream v1.2.3
|
|
|
e34f9a |
- disable docker-fetch for now, doesn't build
|
|
|
895974 |
|
|
|
275132 |
* Mon Jun 15 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-14
|
|
|
275132 |
- Resolves: rhbz#1218639, rhbz#1225556 (unresolved in -11)
|
|
|
275132 |
- build docker @lsm5/rhel7-1.6 commit#ba1f6c3
|
|
|
275132 |
|
|
|
275132 |
* Mon Jun 15 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-13
|
|
|
275132 |
- Resolves: rhbz#1222453
|
|
|
275132 |
|
|
|
275132 |
* Mon Jun 15 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-12
|
|
|
275132 |
- build docker-selinux master commit#9c089c6
|
|
|
275132 |
|
|
|
275132 |
* Mon Jun 15 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-11
|
|
|
275132 |
- Resolves: rhbz#1231936 (clone of fedora rhbz#1231134), rhbz#1225556, rhbz#1215819
|
|
|
275132 |
- build docker @rhatdan/rhel7-1.6 commit#7b32c6c
|
|
|
275132 |
|
|
|
275132 |
* Wed Jun 10 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-10
|
|
|
275132 |
- correct typo
|
|
|
275132 |
|
|
|
275132 |
* Wed Jun 10 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-9
|
|
|
275132 |
- Resolves: rhbz#1214070 - update d-s-s related deps
|
|
|
275132 |
- Resolves: rhbz#1229374 - use prior existing metadata volume if any
|
|
|
275132 |
- Resolves: rhbz#1230192 (include d-s-s master commit#eefbef7)
|
|
|
275132 |
- build docker @rhatdan/rhel7-1.6 commit#b79465d
|
|
|
275132 |
|
|
|
275132 |
* Mon Jun 08 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-8
|
|
|
275132 |
- Resolves: rhbz#1229319 - do not claim /run/secrets
|
|
|
275132 |
- Resolves: rhbz#1228167
|
|
|
275132 |
- build docker rhatdan/rhel7-1.6 commit#ac7d43f
|
|
|
275132 |
- build atomic master commit#f863afd
|
|
|
275132 |
|
|
|
275132 |
* Thu Jun 04 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-7
|
|
|
275132 |
- Resolves: rhbz#1228397 - install manpage for d-s-s
|
|
|
275132 |
- Resolves: rhbz#1228459 - solve 'Permission denied' error for d-s-s
|
|
|
275132 |
- Resolves: rhbz#1228685 - don't append dist tag to docker version
|
|
|
275132 |
(revert change in 1.6.2-4)
|
|
|
275132 |
|
|
|
275132 |
* Tue Jun 02 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-6
|
|
|
275132 |
- build docker rhatdan/rhel7-1.6 commit#f1561f6
|
|
|
275132 |
|
|
|
275132 |
* Tue Jun 02 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-5
|
|
|
275132 |
- build docker-selinux master commit#99c4c77
|
|
|
275132 |
- build atomic master commit#2f1398c
|
|
|
275132 |
- include docker-storage-setup in docker itself, no subpackage created
|
|
|
275132 |
- docker.service Wants=docker-storage-setup.service
|
|
|
275132 |
|
|
|
275132 |
* Mon Jun 01 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-4
|
|
|
275132 |
- include dist tag in 'docker version' to tell a distro build from a docker
|
|
|
275132 |
upstream rpm
|
|
|
275132 |
|
|
|
275132 |
* Mon Jun 01 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-3
|
|
|
275132 |
- Resolves: rhbz#1226989 - correct install path for docker-stroage-setup
|
|
|
275132 |
config file
|
|
|
275132 |
- Resolves: rhbz#1227040 - docker requires docker-storage-setup at runtime
|
|
|
275132 |
- built docker @rhatdan/rhel7-1.6 commit#a615a49
|
|
|
275132 |
- built atomic master commit#2f1398c
|
|
|
275132 |
- built d-s-s master commit#0f2b772
|
|
|
275132 |
|
|
|
275132 |
* Thu May 28 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-2
|
|
|
275132 |
- build docker @rhatdan/rhel7-1.6 commit#175dd9c
|
|
|
275132 |
|
|
|
275132 |
* Thu May 28 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.2-1
|
|
|
275132 |
- Resolves: rhbz#1225965 - rebase to 1.6.2
|
|
|
275132 |
- Resolves: rhbz#1226320, rhbz#1225549, rhbz#1225556
|
|
|
275132 |
- Resolves: rhbz#1219705 - CVE-2015-3627
|
|
|
275132 |
- Resolves: rhbz#1219701 - CVE-2015-3629
|
|
|
275132 |
- Resolves: rhbz#1219709 - CVE-2015-3630
|
|
|
275132 |
- Resolves: rhbz#1219713 - CVE-2015-3631
|
|
|
275132 |
- build docker @rhatdan/rhel7-1.6 commit#d8675b5
|
|
|
275132 |
- build atomic master commit#ec592be
|
|
|
275132 |
- build docker-selinux master commit#e86b2bc
|
|
|
275132 |
|
|
|
275132 |
* Tue May 26 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-15
|
|
|
275132 |
- d-s-s br: pkgconfig(systemd)
|
|
|
275132 |
- Resolves: rhbz#1214070 enforce min NVR for lvm2
|
|
|
275132 |
|
|
|
275132 |
* Tue May 26 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-14
|
|
|
275132 |
- build atomic master commit#cc9aed4
|
|
|
275132 |
- build docker-utils master commit#562e2c0
|
|
|
275132 |
- build docker-selinux master commit#ba1ff3c
|
|
|
275132 |
- include docker-storage-setup subpackage, use master commit#e075395
|
|
|
275132 |
- Resolves: rhbz#1216095
|
|
|
275132 |
|
|
|
275132 |
* Mon May 25 2015 Michal Minar <miminar@redhat.com> - 1.6.0-13
|
|
|
275132 |
- Remove all repositories when removing image by ID.
|
|
|
275132 |
- Resolves: #1222784
|
|
|
454056 |
|
|
|
d3ef29 |
* Thu Apr 30 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-11
|
|
|
d3ef29 |
- build docker @rhatdan/rhel7-1.6 commit#8aae715
|
|
|
d3ef29 |
- build atomic @projectatomic/master commit#5b2fa8d (fixes a typo)
|
|
|
d3ef29 |
- Resolves: rhbz#1207839
|
|
|
d3ef29 |
- Resolves: rhbz#1211765
|
|
|
d3ef29 |
- Resolves: rhbz#1209545 (fixed in 1.6.0-10)
|
|
|
d3ef29 |
- Resolves: rhbz#1151167 (fixed in 1.6.0-6)
|
|
|
d3ef29 |
|
|
|
d3ef29 |
* Tue Apr 28 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-10
|
|
|
d3ef29 |
- Resolves: rhbz#1215768
|
|
|
d3ef29 |
- Resolves: rhbz#1212579
|
|
|
d3ef29 |
- build docker @rhatdan/rhel7-1.6 commit#0852937
|
|
|
d3ef29 |
|
|
|
d3ef29 |
* Fri Apr 24 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-9
|
|
|
d3ef29 |
- build docker @rhatdan/rhel7-1.6 commit#6a57386
|
|
|
d3ef29 |
- fix registry unit test
|
|
|
d3ef29 |
|
|
|
d3ef29 |
* Wed Apr 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-8
|
|
|
d3ef29 |
- build docker @rhatdan/rhel7-1.6 commit#7bd2216
|
|
|
d3ef29 |
|
|
|
d3ef29 |
* Tue Apr 21 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-7
|
|
|
d3ef29 |
- build docker @rhatdan/rhel7-1.6 commit#c3721ce
|
|
|
d3ef29 |
- build atomic master commit#7b136161
|
|
|
d3ef29 |
- Resolves: rhbz#1213636
|
|
|
d3ef29 |
|
|
|
d3ef29 |
* Fri Apr 17 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-6
|
|
|
d3ef29 |
- Rebuilt with golang 1.4.2
|
|
|
d3ef29 |
- Resolves: rhbz#1212813
|
|
|
d3ef29 |
|
|
|
d3ef29 |
* Fri Apr 17 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-5
|
|
|
d3ef29 |
- build docker @rhatdan/rhel7-1.6 commit#9c42d44
|
|
|
d3ef29 |
- build docker-selinux master commit#d59539b
|
|
|
d3ef29 |
- Resolves: rhbz#1211750
|
|
|
d3ef29 |
|
|
|
d3ef29 |
* Thu Apr 16 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-4
|
|
|
d3ef29 |
- build docker @rhatdan/rhel7-1.6 commit#c1a573c
|
|
|
d3ef29 |
- includes 1.6.0 release + redhat patches
|
|
|
d3ef29 |
- include docker-selinux @fedora-cloud/master commit#d74079c
|
|
|
d3ef29 |
|
|
|
d3ef29 |
* Thu Apr 16 2015 Michal Minar <miminar@redhat.com> - 1.6.0-3
|
|
|
d3ef29 |
- Fixed login command
|
|
|
d3ef29 |
- Resolves: rhbz#1212188
|
|
|
d3ef29 |
|
|
|
d3ef29 |
* Wed Apr 15 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-2
|
|
|
d3ef29 |
- Resolves: rhbz#1211292 - move GOTRACEBACK=crash to unitfile
|
|
|
d3ef29 |
- build docker @rhatdan/rhel7-1.6 commit#fed6da1
|
|
|
d3ef29 |
- build atomic master commit#e5734c4
|
|
|
d3ef29 |
|
|
|
d3ef29 |
* Tue Apr 14 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.6.0-1
|
|
|
d3ef29 |
- use docker @rhatdan/rhel7-1.6 commit#a8ccea4
|
|
|
d3ef29 |
|
|
|
d3ef29 |
* Fri Apr 10 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-30
|
|
|
d3ef29 |
- use docker @rhatdan/1.6 commit#24bc1b9
|
|
|
d3ef29 |
|
|
|
d3ef29 |
* Fri Mar 27 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-29
|
|
|
d3ef29 |
- use docker @rhatdan/1.6 commit#2d06cf9
|
|
|
d3ef29 |
|
|
|
97f2a8 |
* Fri Mar 27 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-28
|
|
|
97f2a8 |
- Resolves: rhbz#1206443 - CVE-2015-1843
|
|
|
2af668 |
|
|
|
f0cb50 |
* Wed Mar 25 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-27
|
|
|
f0cb50 |
- revert rhatdan/docker commit 72a9000fcfa2ec5a2c4a29fb62a17c34e6dd186f
|
|
|
f0cb50 |
- Resolves: rhbz#1205276
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Tue Mar 24 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-26
|
|
|
f0cb50 |
- revert rhatdan/docker commit 74310f16deb3d66444bb461c29a09966170367db
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Mon Mar 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-25
|
|
|
f0cb50 |
- don't delete autogen in hack/make.sh
|
|
|
f0cb50 |
- re-enable docker-fetch
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Mon Mar 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-24
|
|
|
f0cb50 |
- bump release tags for all
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Mon Mar 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-23
|
|
|
f0cb50 |
- Resolves: rhbz#1204260 - do not delete linkgraph.db before starting service
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Mon Mar 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-22
|
|
|
f0cb50 |
- increment release tag (no other changes)
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Sun Mar 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-21
|
|
|
f0cb50 |
- install cert for redhat.io authentication
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Mon Mar 16 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-20
|
|
|
f0cb50 |
- Resolves: rhbz#1202517 - fd leak
|
|
|
f0cb50 |
- build docker rhatdan/1.5.0 commit#ad5a92a
|
|
|
f0cb50 |
- build atomic master commit#4ff7dbd
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Tue Mar 10 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-19
|
|
|
f0cb50 |
- Resolves: rhbz#1200394 - don't mount /run as tmpfs if mounted as a volume
|
|
|
d3ef29 |
- Resolves: rhbz#1187603 - 'atomic run' no longer ignores new image if
|
|
|
d3ef29 |
container still exists
|
|
|
f0cb50 |
- build docker rhatdan/1.5.0 commit#5992901
|
|
|
f0cb50 |
- no rpm change, ensure release tags in changelogs are consistent
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Tue Mar 10 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-18
|
|
|
f0cb50 |
- handle updates smoothly from a unified docker-python to split out
|
|
|
f0cb50 |
docker-python and atomic
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Tue Mar 10 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-17
|
|
|
f0cb50 |
- build docker @rhatdan/1.5.0 commit#d7dfe82
|
|
|
f0cb50 |
- Resolves: rhbz#1198599 - use homedir from /etc/passwd if $HOME isn't set
|
|
|
f0cb50 |
- atomic provided in a separate subpackage
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Mon Mar 09 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-16
|
|
|
f0cb50 |
- build docker @rhatdan/1.5.0 commit#867ff5e
|
|
|
f0cb50 |
- build atomic master commit#
|
|
|
f0cb50 |
- Resolves: rhbz#1194445 - patch docker-python to make it work with older
|
|
|
f0cb50 |
python-requests
|
|
|
f0cb50 |
- Resolves: rhbz#1200104 - dns resolution works with selinux enforced
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Mon Mar 09 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-15
|
|
|
f0cb50 |
- Resolves: rhbz#1199433 - correct install path for 80-docker.rules
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Mon Mar 09 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-14
|
|
|
f0cb50 |
- build docker, @rhatdan/1.5.0 commit#365cf68
|
|
|
f0cb50 |
- build atomic, master commit#f175fb6
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Fri Mar 06 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-13
|
|
|
f0cb50 |
- build docker, @rhatdan/1.5.0 commit#e0fdceb
|
|
|
f0cb50 |
- build atomic, master commit#ef2b661
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Thu Mar 05 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-12
|
|
|
f0cb50 |
- Resolves: rhbz#1198630
|
|
|
f0cb50 |
- build docker, @rhatdan/1.5.0 commit#233dc3e
|
|
|
f0cb50 |
- build atomic, master commit#c6390c7
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Tue Mar 03 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-11
|
|
|
f0cb50 |
- build docker rhatdan/1.5.0 commit#3a4d0f1
|
|
|
f0cb50 |
- build atomic master commit#d68d76b
|
|
|
f0cb50 |
- Resolves: rhbz#1188252 - rm /var/lib/docker/linkgraph.db in unit file
|
|
|
f0cb50 |
before starting docker daemon
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Mon Mar 02 2015 Michal Minar <miminar@redhat.com> - 1.5.0-10
|
|
|
f0cb50 |
- Fixed and speeded up repository searching
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Fri Feb 27 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-9
|
|
|
f0cb50 |
- increment all release tags
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Fri Feb 27 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-9
|
|
|
f0cb50 |
- increment docker release tag
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Thu Feb 26 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-7
|
|
|
f0cb50 |
- Resolves: rhbz#1196709 - fix docker build's authentication issue
|
|
|
f0cb50 |
- Resolves: rhbz#1197158 - fix ADD_REGISTRY and BLOCK_REGISTRY in unitfile
|
|
|
f0cb50 |
- Build docker-utils commit#dcb4518
|
|
|
f0cb50 |
- update docker-python to 1.0.0
|
|
|
f0cb50 |
- disable docker-fetch (not compiling currently)
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Tue Feb 24 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-6
|
|
|
f0cb50 |
- build docker rhatdan/1.5.0 commit#e5d3e08
|
|
|
f0cb50 |
- docker registers machine with systemd
|
|
|
f0cb50 |
- create journal directory so that journal on host can see journal content in
|
|
|
f0cb50 |
container
|
|
|
f0cb50 |
- build atomic commit#a7ff4cb
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Mon Feb 16 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-5
|
|
|
f0cb50 |
- use docker rhatdan/1.5.0 commit#1a4e592
|
|
|
f0cb50 |
- Complete fix for rhbz#1192171 - patch included in docker tarball
|
|
|
f0cb50 |
- use docker-python 0.7.2
|
|
|
f0cb50 |
- Resolves: rhbz#1192312 - solve version-release requirements for
|
|
|
f0cb50 |
subpackages
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Mon Feb 16 2015 Michal Minar <miminar@redhat.com> - 1.5.0-4
|
|
|
f0cb50 |
- Readded --(add|block)-registry flags.
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Fri Feb 13 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-2
|
|
|
f0cb50 |
- Resolves: rhbz#1192312 - custom release numbers for
|
|
|
f0cb50 |
python-websocket-client and docker-py
|
|
|
f0cb50 |
- Resolves: rhbz#1192171 - changed options and env vars for
|
|
|
f0cb50 |
adding/replacing registries
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Thu Feb 12 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.5.0-1
|
|
|
f0cb50 |
- build docker rhatdan/1.5 a06d357
|
|
|
f0cb50 |
- build atomic projectaomic/master d8c35ce
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Thu Feb 05 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-39
|
|
|
f0cb50 |
- Resolves: rhbz#1187993 - allow core dump with no size limit
|
|
|
f0cb50 |
- build atomic commit#98c21fd
|
|
|
f0cb50 |
|
|
|
f0cb50 |
* Mon Feb 02 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-38
|
|
|
f0cb50 |
- Resolves: rhbz#1188318
|
|
|
f0cb50 |
- atom commit#ea7ab31
|
|
|
57c396 |
|
|
|
b215bf |
* Fri Jan 30 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-37
|
|
|
b215bf |
- add extra options to /etc/sysconfig/docker to add/block registries
|
|
|
b215bf |
- build atom commit#3d4fd20
|
|
|
b215bf |
|
|
|
b215bf |
* Fri Jan 30 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-36
|
|
|
b215bf |
- remove dependency on python-backports
|
|
|
b215bf |
|
|
|
b215bf |
* Fri Jan 30 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-35
|
|
|
b215bf |
- build atomic rhatdan/master commit#973142b
|
|
|
b215bf |
- build docker rhatdan/1.4.1-beta2 commit#d26b358
|
|
|
b215bf |
|
|
|
b215bf |
* Fri Jan 30 2015 Michal Minar <miminar@redhat.com> - 1.4.1-34
|
|
|
b215bf |
- added patch fixed tagging issue
|
|
|
b215bf |
|
|
|
b215bf |
* Fri Jan 30 2015 Michal Minar <miminar@redhat.com> - 1.4.1-33
|
|
|
b215bf |
- build docker rhatdan/1.4.1-beta2 commit#b024f0f
|
|
|
b215bf |
- --registry-(replace|preprend) replaced with --(add|block)-registry
|
|
|
b215bf |
|
|
|
b215bf |
* Thu Jan 29 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-32
|
|
|
b215bf |
- build atom commit#567c2c8
|
|
|
b215bf |
|
|
|
b215bf |
* Thu Jan 29 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-31
|
|
|
b215bf |
- build atom commit#b9e02ad
|
|
|
b215bf |
|
|
|
b215bf |
* Wed Jan 28 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-30
|
|
|
b215bf |
- Require python-backports >= 1.0-8 for docker-python
|
|
|
b215bf |
|
|
|
b215bf |
* Wed Jan 28 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-29
|
|
|
b215bf |
- build docker rhatdan/1.4.1-beta2 commit#0af307b
|
|
|
b215bf |
- --registry-replace|prepend flags via Michal Minar <miminar@redhat.com>
|
|
|
b215bf |
- build atomic rhatdan/master commit#37f9be0
|
|
|
b215bf |
|
|
|
b215bf |
* Tue Jan 27 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-27
|
|
|
b215bf |
- patch to avoid crash in atomic host
|
|
|
b215bf |
|
|
|
b215bf |
* Tue Jan 27 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-26
|
|
|
b215bf |
- build docker rhatdan/1.4.1-beta2 commit#0b4cade
|
|
|
b215bf |
- build atomic rhatdan/master commit#b8c7b9d
|
|
|
b215bf |
- build docker-utils vbatts/master commit#fb94a28
|
|
|
b215bf |
|
|
|
b215bf |
* Fri Jan 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-25
|
|
|
b215bf |
- build atomic commit#fcbc57b with fix for install/upgrade/status
|
|
|
b215bf |
- build docker rhatdan/1.4.1-beta2 commit#f476836
|
|
|
b215bf |
|
|
|
b215bf |
* Fri Jan 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-24
|
|
|
b215bf |
- install dockertarsum from github.com/vbatts/docker-utils
|
|
|
b215bf |
|
|
|
b215bf |
* Fri Jan 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-23
|
|
|
b215bf |
- build rhatdan/atom commit#ef16d40
|
|
|
b215bf |
- try urlparse from six, else from argparse
|
|
|
b215bf |
|
|
|
b215bf |
* Fri Jan 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-22
|
|
|
b215bf |
- use python-argparse to provide urlparse
|
|
|
b215bf |
|
|
|
b215bf |
* Fri Jan 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-21
|
|
|
b215bf |
- move atomic bits into -python subpackage
|
|
|
b215bf |
|
|
|
b215bf |
* Fri Jan 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-20
|
|
|
b215bf |
- update atom commit#10fc4c8
|
|
|
b215bf |
|
|
|
b215bf |
* Fri Jan 23 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-19
|
|
|
b215bf |
- build rhatdan/1.4.1-beta2 commit#35a8dc5
|
|
|
b215bf |
- --registry-prepend instead of --registry-append
|
|
|
b215bf |
|
|
|
b215bf |
* Thu Jan 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-18
|
|
|
b215bf |
- don't install nsinit
|
|
|
b215bf |
|
|
|
b215bf |
* Thu Jan 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-17
|
|
|
b215bf |
- install atomic and manpages
|
|
|
b215bf |
- don't provide -devel subpackage
|
|
|
b215bf |
|
|
|
b215bf |
* Thu Jan 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-16
|
|
|
b215bf |
- install python-websocket-client and python-docker as subpackages
|
|
|
b215bf |
|
|
|
b215bf |
* Thu Jan 22 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-15
|
|
|
b215bf |
- build rhatdan/1.4.1-beta2 commit#06670da
|
|
|
b215bf |
- install subscription manager
|
|
|
b215bf |
|
|
|
b215bf |
* Tue Jan 20 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-14
|
|
|
b215bf |
- increment release number to avoid conflict with 7.0
|
|
|
b215bf |
|
|
|
b215bf |
* Tue Jan 20 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-13
|
|
|
b215bf |
- build rhatdan/1.4.1-beta2 commit#2de8e5d
|
|
|
b215bf |
- Resolves: rhbz#1180718 - MountFlags=slave in unitfile
|
|
|
b215bf |
|
|
|
b215bf |
* Mon Jan 19 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-12
|
|
|
b215bf |
- build rhatdan/1.4.1-beta2 commit#218805f
|
|
|
b215bf |
|
|
|
b215bf |
* Mon Jan 19 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-11
|
|
|
b215bf |
- build rhatdan/1.4.1-beta2 commit#4b7addf
|
|
|
b215bf |
|
|
|
b215bf |
* Fri Jan 16 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-10
|
|
|
b215bf |
- build rhatdan/1.4.1-beta2 commit #a0c7884
|
|
|
b215bf |
- socket activation not used
|
|
|
b215bf |
- include docker_transition_unconfined boolean info and disable socket
|
|
|
b215bf |
activation in /etc/sysconfig/docker
|
|
|
b215bf |
- docker group not created
|
|
|
b215bf |
|
|
|
b215bf |
* Fri Jan 16 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-9
|
|
|
b215bf |
- run all tests and not just unit tests
|
|
|
b215bf |
- replace codegansta.tgz with codegangsta-cli.patch
|
|
|
b215bf |
|
|
|
b215bf |
* Thu Jan 15 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-8
|
|
|
b215bf |
- build rhatdan/1.4.1-beta2 commit #6ee2421
|
|
|
b215bf |
|
|
|
b215bf |
* Wed Jan 14 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-7
|
|
|
b215bf |
- build rhatdan/1.4.1-beta2 01a64e011da131869b42be8b2f11f540fd4b8f33
|
|
|
b215bf |
- run tests inside a docker repo during check phase
|
|
|
b215bf |
|
|
|
b215bf |
* Mon Jan 12 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-6
|
|
|
b215bf |
- build rhatdan/1.4.1-beta2 01a64e011da131869b42be8b2f11f540fd4b8f33
|
|
|
b215bf |
|
|
|
b215bf |
* Wed Jan 07 2015 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-5
|
|
|
b215bf |
- own /etc/docker
|
|
|
b215bf |
- include check for unit tests
|
|
|
b215bf |
|
|
|
b215bf |
* Fri Dec 19 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-4
|
|
|
b215bf |
- Install vim and shell completion files in main package itself
|
|
|
b215bf |
|
|
|
b215bf |
* Thu Dec 18 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-3
|
|
|
b215bf |
- rename cron script
|
|
|
b215bf |
- change enable/disable to true/false
|
|
|
b215bf |
|
|
|
b215bf |
* Thu Dec 18 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-2
|
|
|
b215bf |
- Enable the logrotate cron job by default, disable via sysconfig variable
|
|
|
b215bf |
- Install docker-network and docker-container-logrotate sysconfig files
|
|
|
b215bf |
|
|
|
b215bf |
* Thu Dec 18 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.1-1
|
|
|
b215bf |
- Resolves: rhbz#1174351 - update to 1.4.1
|
|
|
b215bf |
- Provide subpackages for fish and zsh completion and vim syntax highlighting
|
|
|
b215bf |
- Provide subpackage to run logrotate on running containers as a daily cron
|
|
|
b215bf |
job
|
|
|
b215bf |
|
|
|
b215bf |
* Mon Dec 15 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.4.0-1
|
|
|
b215bf |
- Resolves: rhbz#1174266 - update to 1.4.0
|
|
|
b215bf |
- Fixes: CVE-2014-9357, CVE-2014-9358
|
|
|
b215bf |
- uses /etc/docker as cert path
|
|
|
b215bf |
- create dockerroot user
|
|
|
b215bf |
- skip btrfs version check
|
|
|
831d3f |
|
|
|
a2b5ed |
* Fri Dec 05 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.3.2-4
|
|
|
a2b5ed |
- update libcontainer paths
|
|
|
a2b5ed |
- update docker.sysconfig to include DOCKER_TMPDIR
|
|
|
a2b5ed |
- update docker.service unitfile
|
|
|
a2b5ed |
- package provides docker-io-devel
|
|
|
a2b5ed |
|
|
|
a2b5ed |
* Mon Dec 01 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.3.2-3
|
|
|
a2b5ed |
- revert docker.service change, -H fd:// in sysconfig file
|
|
|
a2b5ed |
|
|
|
a2b5ed |
* Mon Dec 01 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.3.2-2
|
|
|
a2b5ed |
- update systemd files
|
|
|
a2b5ed |
|
|
|
a2b5ed |
* Tue Nov 25 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.3.2-1
|
|
|
a2b5ed |
- Resolves: rhbz#1167870 - update to v1.3.2
|
|
|
a2b5ed |
- Fixes CVE-2014-6407, CVE-2014-6408
|
|
|
a2b5ed |
|
|
|
a2b5ed |
* Fri Nov 14 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.3.1-2
|
|
|
a2b5ed |
- remove unused buildrequires
|
|
|
a2b5ed |
|
|
|
a2b5ed |
* Thu Nov 13 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.3.1-1
|
|
|
a2b5ed |
- bump to upstream v1.3.1
|
|
|
a2b5ed |
- patch to vendor in go-md2man and deps for manpage generation
|
|
|
d7c336 |
|
|
|
d9c15b |
* Thu Oct 30 2014 Dan Walsh <dwalsh@redhat.com> - 1.2.0-1.8
|
|
|
d9c15b |
- Remove docker-rhel entitlment patch. This was buggy and is no longer needed
|
|
|
d9c15b |
|
|
|
d9c15b |
* Mon Oct 20 2014 Dan Walsh <dwalsh@redhat.com> - 1.2.0-1.7
|
|
|
d9c15b |
- Add 404 patch to allow docker to continue to try to download updates with
|
|
|
d9c15b |
- different certs, even if the registry returns 404 error
|
|
|
d9c15b |
|
|
|
d9c15b |
* Tue Oct 7 2014 Eric Paris <eparis@redhat.com> - 1.2.0-1.6
|
|
|
d9c15b |
- make docker.socket start/restart when docker starts/restarts
|
|
|
d9c15b |
|
|
|
d9c15b |
* Tue Sep 30 2014 Eric Paris <eparis@redhat.com> - 1.2.0-1.5
|
|
|
d9c15b |
- put docker.socket back the right way
|
|
|
d9c15b |
|
|
|
d9c15b |
* Sat Sep 27 2014 Dan Walsh <dwalsh@redhat.com> - 1.2.0-1.4
|
|
|
d9c15b |
- Remove docker.socket
|
|
|
d9c15b |
|
|
|
d9c15b |
* Mon Sep 22 2014 Dan Walsh <dwalsh@redhat.com> - 1.2.0-1.2
|
|
|
d9c15b |
- Fix docker.service file to use /etc/sysconfig/docker-storage.service
|
|
|
d9c15b |
|
|
|
d9c15b |
* Mon Sep 22 2014 Dan Walsh <dwalsh@redhat.com> - 1.2.0-1.1
|
|
|
d9c15b |
- Bump release to 1.2.0
|
|
|
d9c15b |
- Add support for /etc/sysconfig/docker-storage
|
|
|
d9c15b |
- Add Provides:golang(github.com/docker/libcontainer)
|
|
|
d9c15b |
- Add provides docker-io to get through compatibility issues
|
|
|
d9c15b |
- Update man pages
|
|
|
d9c15b |
- Add missing pieces of libcontainer
|
|
|
d9c15b |
- Devel now obsoletes golang-github-docker-libcontainer-devel
|
|
|
d9c15b |
- Remove runtime dependency on golang
|
|
|
d9c15b |
- Fix secrets patch
|
|
|
d9c15b |
- Add -devel -pkg-devel subpackages
|
|
|
d9c15b |
- Move libcontainer from -lib to -devel subpackage
|
|
|
d9c15b |
- Allow docker to use /etc/pki/entitlement for certs
|
|
|
d9c15b |
- New sources that satisfy nsinit deps
|
|
|
d9c15b |
- Change docker client certs links
|
|
|
d9c15b |
- Add nsinit
|
|
|
c4784f |
|
|
|
c4784f |
* Tue Sep 2 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-10
|
|
|
c4784f |
- Add docker client entitlement certs
|
|
|
c4784f |
|
|
|
c4784f |
* Fri Aug 8 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-9
|
|
|
c4784f |
- Add Matt Heon patch to allow containers to work if machine is not entitled
|
|
|
c4784f |
|
|
|
c4784f |
* Thu Aug 7 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-8
|
|
|
c4784f |
- Fix handing of rhel repos
|
|
|
c4784f |
|
|
|
c4784f |
* Mon Aug 4 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-6
|
|
|
c4784f |
- Update man pages
|
|
|
c4784f |
|
|
|
c4784f |
* Mon Jul 28 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-5
|
|
|
c4784f |
- Fix environment patch
|
|
|
c4784f |
- Add /etc/machine-id patch
|
|
|
c4784f |
|
|
|
c4784f |
* Fri Jul 25 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-4
|
|
|
c4784f |
- Add Secrets Patch back in
|
|
|
c4784f |
|
|
|
c4784f |
* Fri Jul 25 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-3
|
|
|
c4784f |
- Pull in latest docker-1.1.2 code
|
|
|
c4784f |
|
|
|
c4784f |
* Fri Jul 25 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.2-2
|
|
|
c4784f |
- Update to the latest from upstream
|
|
|
c4784f |
- Add comment and envoroment patches to allow setting of comments and
|
|
|
c4784f |
- enviroment variables from docker import
|
|
|
c4784f |
|
|
|
c4784f |
* Wed Jul 23 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.1-3
|
|
|
c4784f |
- Install docker bash completions in proper location
|
|
|
c4784f |
- Add audit_write as a default capability
|
|
|
c4784f |
|
|
|
c4784f |
* Tue Jul 22 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.1-2
|
|
|
c4784f |
- Update man pages
|
|
|
c4784f |
- Fix docker pull registry/repo
|
|
|
c4784f |
|
|
|
c4784f |
* Fri Jul 18 2014 Dan Walsh <dwalsh@redhat.com> - 1.1.1-1
|
|
|
c4784f |
- Update to latest from upstream
|
|
|
c4784f |
|
|
|
c4784f |
* Mon Jul 14 2014 Dan Walsh <dwalsh@redhat.com> - 1.0.0-10
|
|
|
c4784f |
- Pass otions from /etc/sysconfig/docker into docker.service unit file
|
|
|
c4784f |
|
|
|
c4784f |
* Thu Jul 10 2014 Dan Walsh <dwalsh@redhat.com> - 1.0.0-9
|
|
|
c4784f |
- Fix docker-registry patch to handle search
|
|
|
c4784f |
|
|
|
c4784f |
* Thu Jul 10 2014 Dan Walsh <dwalsh@redhat.com> - 1.0.0-8
|
|
|
26b193 |
- Re-add %%{_datadir}/rhel/secrets/rhel7.repo
|
|
|
c4784f |
|
|
|
c4784f |
* Wed Jul 9 2014 Dan Walsh <dwalsh@redhat.com> - 1.0.0-7
|
|
|
c4784f |
- Patch: Save "COMMENT" field in Dockerfile into image content.
|
|
|
c4784f |
- Patch: Update documentation noting that SIGCHLD is not proxied.
|
|
|
c4784f |
- Patch: Escape control and nonprintable characters in docker ps
|
|
|
c4784f |
- Patch: machine-id: add container id access
|
|
|
c4784f |
- Patch: Report child error better (and later)
|
|
|
c4784f |
- Patch: Fix invalid fd race
|
|
|
c4784f |
- Patch: Super minimal host based secrets
|
|
|
c4784f |
- Patch: libcontainer: Mount cgroups in the container
|
|
|
c4784f |
- Patch: pkg/cgroups Add GetMounts() and GetAllSubsystems()
|
|
|
c4784f |
- Patch: New implementation of /run support
|
|
|
c4784f |
- Patch: Error if Docker daemon starts with BTRFS graph driver and SELinux enabled
|
|
|
c4784f |
- Patch: Updated CLI documentation for docker pull with notes on specifying URL
|
|
|
c4784f |
- Patch: Updated docker pull manpage to reflect ability to specify URL of registry.
|
|
|
c4784f |
- Patch: Docker should use /var/tmp for large temporary files.
|
|
|
c4784f |
- Patch: Add --registry-append and --registry-replace qualifier to docker daemon
|
|
|
c4784f |
- Patch: Increase size of buffer for signals
|
|
|
c4784f |
- Patch: Update documentation noting that SIGCHLD is not proxied.
|
|
|
c4784f |
- Patch: Escape control and nonprintable characters in docker ps
|
|
|
c4784f |
|
|
|
c4784f |
* Tue Jun 24 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.0.0-4
|
|
|
c4784f |
- Documentation update for --sig-proxy
|
|
|
c4784f |
- increase size of buffer for signals
|
|
|
c4784f |
- escape control and nonprintable characters in docker ps
|
|
|
c4784f |
|
|
|
c4784f |
* Tue Jun 24 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.0.0-3
|
|
|
c4784f |
- Resolves: rhbz#1111769 - CVE-2014-3499
|
|
|
c4784f |
|
|
|
c4784f |
* Thu Jun 19 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.0.0-2
|
|
|
c4784f |
- Resolves: rhbz#1109938 - upgrade to upstream version 1.0.0 + patches
|
|
|
c4784f |
use repo: https://github.com/lsm5/docker/commits/htb2
|
|
|
c4784f |
- Resolves: rhbz#1109858 - fix race condition with secrets
|
|
|
c4784f |
- add machine-id patch:
|
|
|
c4784f |
https://github.com/vbatts/docker/commit/4f51757a50349bbbd2282953aaa3fc0e9a989741
|
|
|
c4784f |
|
|
|
c4784f |
* Wed Jun 18 2014 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.0.0-1
|
|
|
c4784f |
- Resolves: rhbz#1109938 - upgrade to upstream version 1.0.0 + patches
|
|
|
c4784f |
use repo: https://github.com/lsm5/docker/commits/2014-06-18-htb2
|
|
|
c4784f |
- Resolves: rhbz#1110876 - secrets changes required for subscription
|
|
|
c4784f |
management
|
|
|
c4784f |
- btrfs now available (remove old comment)
|
|
|
e99614 |
|
|
|
b28b51 |
* Fri Jun 06 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-19
|
|
|
b28b51 |
- build with golang-github-kr-pty-0-0.19.git98c7b80.el7
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Jun 06 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-18
|
|
|
b28b51 |
- update manpages
|
|
|
b28b51 |
- use branch: https://github.com/lsm5/docker/commits/2014-06-06-2
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Jun 05 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-17
|
|
|
b28b51 |
- use branch: https://github.com/lsm5/docker/commits/2014-06-05-final2
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Jun 05 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-16
|
|
|
b28b51 |
- latest repo: https://github.com/lsm5/docker/commits/2014-06-05-5
|
|
|
b28b51 |
- update secrets symlinks
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon Jun 02 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-15
|
|
|
b28b51 |
- correct the rhel7.repo symlink
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon Jun 02 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-14
|
|
|
b28b51 |
- only symlink the repo itself, not the dir
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sun Jun 01 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-13
|
|
|
b28b51 |
- use the repo dir itself and not repo for second symlink
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sat May 31 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-12
|
|
|
b28b51 |
- create symlinks at install time and not in scriptlets
|
|
|
b28b51 |
- own symlinks in /etc/docker/secrets
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sat May 31 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-11
|
|
|
b28b51 |
- add symlinks for sharing host entitlements
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu May 29 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-10
|
|
|
b28b51 |
- /etc/docker/secrets has permissions 750
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu May 29 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-9
|
|
|
b28b51 |
- create and own /etc/docker/secrets
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu May 29 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-8
|
|
|
b28b51 |
- don't use docker.sysconfig meant for sysvinit (just to avoid confusion)
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu May 29 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-7
|
|
|
b28b51 |
- install /etc/sysconfig/docker for additional args
|
|
|
b28b51 |
- use branch 2014-05-29 with modified secrets dir path
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu May 29 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-6
|
|
|
b28b51 |
- secret store patch
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu May 22 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-5
|
|
|
b28b51 |
- native driver: add required capabilities (dotcloud issue #5928)
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu May 22 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-4
|
|
|
b28b51 |
- branch 2014-05-22
|
|
|
b28b51 |
- rename rhel-dockerfiles dir to dockerfiles
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed May 21 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-3
|
|
|
b28b51 |
- mount /run with correct selinux label
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon May 19 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-2
|
|
|
b28b51 |
- add btrfs
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon May 19 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.11.1-1
|
|
|
b28b51 |
- use latest master
|
|
|
b28b51 |
- branch: https://github.com/lsm5/docker/commits/2014-05-09-2
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon May 19 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-13
|
|
|
b28b51 |
- add registry search list patch
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed May 14 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-12
|
|
|
b28b51 |
- include dockerfiles for postgres, systemd/{httpd,mariadb}
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon May 12 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-11
|
|
|
b28b51 |
- add apache, mariadb and mongodb dockerfiles
|
|
|
b28b51 |
- branch 2014-05-12
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri May 09 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-10
|
|
|
b28b51 |
- add rhel-dockerfile/mongodb
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri May 09 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-9
|
|
|
b28b51 |
- use branch: https://github.com/lsm5/docker/commits/2014-05-09
|
|
|
b28b51 |
- install rhel-dockerfile for apache
|
|
|
b28b51 |
- cleanup: get rid of conditionals
|
|
|
b28b51 |
- libcontainer: create dirs/files as needed for bind mounts
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu May 08 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-8
|
|
|
b28b51 |
- fix docker top
|
|
|
b28b51 |
|
|
|
b28b51 |
* Tue May 06 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-7
|
|
|
b28b51 |
- set container pid for process in native driver
|
|
|
b28b51 |
|
|
|
b28b51 |
* Tue May 06 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-6
|
|
|
b28b51 |
- ensure upstream PR #5529 is included
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon May 05 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-5
|
|
|
b28b51 |
- block push to docker index
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu May 01 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-4
|
|
|
b28b51 |
- enable selinux in unitfile
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu May 01 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-3
|
|
|
b28b51 |
- branch https://github.com/lsm5/docker/commits/2014-05-01-2
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu May 01 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-2
|
|
|
b28b51 |
- branch https://github.com/lsm5/docker/tree/2014-05-01
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Apr 25 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.10.0-1
|
|
|
b28b51 |
- renamed (docker-io -> docker)
|
|
|
b28b51 |
- rebased on 0.10.0
|
|
|
b28b51 |
- branch used: https://github.com/lsm5/docker/tree/2014-04-25
|
|
|
b28b51 |
- manpages packaged separately (pandoc not available on RHEL-7)
|
|
|
b28b51 |
|
|
|
b28b51 |
* Tue Apr 08 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.1-4.collider
|
|
|
b28b51 |
- manpages merged, some more patches from alex
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Apr 03 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.1-3.collider
|
|
|
b28b51 |
- fix --volumes-from mount failure, include docker-images/info/tag manpages
|
|
|
b28b51 |
|
|
|
b28b51 |
* Tue Apr 01 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.1-2.collider
|
|
|
b28b51 |
- solve deadlock issue
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon Mar 31 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.1-1.collider
|
|
|
b28b51 |
- branch 2014-03-28, include additional docker manpages from whenry
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Mar 27 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.0-7.collider
|
|
|
b28b51 |
- env file support (vbatts)
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon Mar 17 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.0-6.collider
|
|
|
b28b51 |
- dwalsh's selinux patch rewritten
|
|
|
b28b51 |
- point to my docker repo as source0 (contains all patches already)
|
|
|
b28b51 |
- don't require tar and libcgroup
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Mar 14 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.0-5.collider
|
|
|
b28b51 |
- add kraman's container-pid.patch
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Mar 14 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.0-4.collider
|
|
|
b28b51 |
- require docker.socket in unitfile
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Mar 13 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.0-3.collider
|
|
|
b28b51 |
- use systemd socket activation
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Mar 12 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.0-2.collider
|
|
|
b28b51 |
- add collider tag to release field
|
|
|
b28b51 |
|
|
|
b28b51 |
* Tue Mar 11 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.9.0-1
|
|
|
b28b51 |
- upstream version bump to 0.9.0
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon Mar 10 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.8.1-3
|
|
|
b28b51 |
- add alexl's patches upto af9bb2e3d37fcddd5e041d6ae45055f649e2fbd4
|
|
|
b28b51 |
- add guelfey/go.dbus to BR
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sun Mar 09 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.8.1-2
|
|
|
b28b51 |
- use upstream commit 3ace9512bdf5c935a716ee1851d3e636e7962fac
|
|
|
b28b51 |
- add dwalsh's patches for selinux, emacs-gitignore, listen_pid and
|
|
|
b28b51 |
remount /var/lib/docker as --private
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Feb 19 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.8.1-1
|
|
|
b28b51 |
- Bug 1066841 - upstream version bump to v0.8.1
|
|
|
b28b51 |
- use sysvinit files from upstream contrib
|
|
|
b28b51 |
- BR golang >= 1.2-7
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Feb 13 2014 Adam Miller <maxamillion@fedoraproject.org> - 0.8.0-3
|
|
|
b28b51 |
- Remove unneeded sysctl settings in initscript
|
|
|
b28b51 |
https://github.com/dotcloud/docker/pull/4125
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sat Feb 08 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.8.0-2
|
|
|
b28b51 |
- ignore btrfs for rhel7 and clones for now
|
|
|
b28b51 |
- include vim syntax highlighting from contrib/syntax/vim
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Feb 05 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.8.0-1
|
|
|
b28b51 |
- upstream version bump
|
|
|
b28b51 |
- don't use btrfs for rhel6 and clones (yet)
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon Jan 20 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.6-2
|
|
|
b28b51 |
- bridge-utils only for rhel < 7
|
|
|
b28b51 |
- discard freespace when image is removed
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Jan 16 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.6-1
|
|
|
b28b51 |
- upstream version bump v0.7.6
|
|
|
b28b51 |
- built with golang >= 1.2
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Jan 09 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.5-1
|
|
|
b28b51 |
- upstream version bump to 0.7.5
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Jan 09 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.4-1
|
|
|
b28b51 |
- upstream version bump to 0.7.4 (BZ #1049793)
|
|
|
b28b51 |
- udev rules file from upstream contrib
|
|
|
b28b51 |
- unit file firewalld not used, description changes
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon Jan 06 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.3-3
|
|
|
b28b51 |
- udev rules typo fixed (BZ 1048775)
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sat Jan 04 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.3-2
|
|
|
b28b51 |
- missed commit value in release 1, updated now
|
|
|
b28b51 |
- upstream release monitoring (BZ 1048441)
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sat Jan 04 2014 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.3-1
|
|
|
b28b51 |
- upstream release bump to v0.7.3
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Dec 19 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.2-2
|
|
|
b28b51 |
- require xz to work with ubuntu images (BZ #1045220)
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Dec 18 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.2-1
|
|
|
b28b51 |
- upstream release bump to v0.7.2
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Dec 06 2013 Vincent Batts <vbatts@redhat.com> - 0.7.1-1
|
|
|
b28b51 |
- upstream release of v0.7.1
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon Dec 02 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-14
|
|
|
b28b51 |
- sysvinit patch corrected (epel only)
|
|
|
b28b51 |
- 80-docker.rules unified for udisks1 and udisks2
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon Dec 02 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-13
|
|
|
b28b51 |
- removed firewall-cmd --add-masquerade
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sat Nov 30 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-12
|
|
|
b28b51 |
- systemd for fedora >= 18
|
|
|
b28b51 |
- firewalld in unit file changed from Requires to Wants
|
|
|
b28b51 |
- firewall-cmd --add-masquerade after docker daemon start in unit file
|
|
|
b28b51 |
(Michal Fojtik <mfojtik@redhat.com>), continue if not present (Michael Young
|
|
|
b28b51 |
<m.a.young@durham.ac.uk>)
|
|
|
b28b51 |
- 80-docker.rules included for epel too, ENV variables need to be changed for
|
|
|
b28b51 |
udisks1
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Nov 29 2013 Marek Goldmann <mgoldman@redhat.com> - 0.7.0-11
|
|
|
b28b51 |
- Redirect docker log to /var/log/docker (epel only)
|
|
|
b28b51 |
- Removed the '-b none' parameter from sysconfig, it's unnecessary since
|
|
|
b28b51 |
we create the bridge now automatically (epel only)
|
|
|
b28b51 |
- Make sure we have the cgconfig service started before we start docker,
|
|
|
b28b51 |
RHBZ#1034919 (epel only)
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Nov 28 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-10
|
|
|
b28b51 |
- udev rules added for fedora >= 19 BZ 1034095
|
|
|
b28b51 |
- epel testing pending
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Nov 28 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-9
|
|
|
b28b51 |
- requires and started after firewalld
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Nov 28 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-8
|
|
|
b28b51 |
- iptables-fix patch corrected
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Nov 28 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-7
|
|
|
b28b51 |
- use upstream tarball and patch with mgoldman's commit
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Nov 28 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-6
|
|
|
b28b51 |
- using mgoldman's shortcommit value 0ff9bc1 for package (BZ #1033606)
|
|
|
b28b51 |
- https://github.com/dotcloud/docker/pull/2907
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Nov 27 2013 Adam Miller <maxamillion@fedoraproject.org> - 0.7.0-5
|
|
|
b28b51 |
- Fix up EL6 preun/postun to not fail on postun scripts
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Nov 27 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-4
|
|
|
b28b51 |
- brctl patch for rhel <= 7
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Nov 27 2013 Vincent Batts <vbatts@redhat.com> - 0.7.0-3
|
|
|
b28b51 |
- Patch how the bridge network is set up on RHEL (BZ #1035436)
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Nov 27 2013 Vincent Batts <vbatts@redhat.com> - 0.7.0-2
|
|
|
b28b51 |
- add libcgroup require (BZ #1034919)
|
|
|
b28b51 |
|
|
|
b28b51 |
* Tue Nov 26 2013 Marek Goldmann <mgoldman@redhat.com> - 0.7.0-1
|
|
|
b28b51 |
- Upstream release 0.7.0
|
|
|
b28b51 |
- Using upstream script to build the binary
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon Nov 25 2013 Vincent Batts <vbatts@redhat.com> - 0.7-0.20.rc7
|
|
|
b28b51 |
- correct the build time defines (bz#1026545). Thanks dan-fedora.
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Nov 22 2013 Adam Miller <maxamillion@fedoraproject.org> - 0.7-0.19.rc7
|
|
|
b28b51 |
- Remove xinetd entry, added sysvinit
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Nov 22 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.18.rc7
|
|
|
b28b51 |
- rc version bump
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Nov 20 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.17.rc6
|
|
|
b28b51 |
- removed ExecStartPost lines from docker.service (BZ #1026045)
|
|
|
b28b51 |
- dockerinit listed in files
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Nov 20 2013 Vincent Batts <vbatts@redhat.com> - 0.7-0.16.rc6
|
|
|
b28b51 |
- adding back the none bridge patch
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Nov 20 2013 Vincent Batts <vbatts@redhat.com> - 0.7-0.15.rc6
|
|
|
b28b51 |
- update docker source to crosbymichael/0.7.0-rc6
|
|
|
b28b51 |
- bridge-patch is not needed on this branch
|
|
|
b28b51 |
|
|
|
b28b51 |
* Tue Nov 19 2013 Vincent Batts <vbatts@redhat.com> - 0.7-0.14.rc5
|
|
|
b28b51 |
- update docker source to crosbymichael/0.7-rc5
|
|
|
b28b51 |
- update docker source to 457375ea370a2da0df301d35b1aaa8f5964dabfe
|
|
|
b28b51 |
- static magic
|
|
|
b28b51 |
- place dockerinit in a libexec
|
|
|
b28b51 |
- add sqlite dependency
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sat Nov 02 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.13.dm
|
|
|
b28b51 |
- docker.service file sets iptables rules to allow container networking, this
|
|
|
b28b51 |
is a stopgap approach, relevant pull request here:
|
|
|
b28b51 |
https://github.com/dotcloud/docker/pull/2527
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sat Oct 26 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.12.dm
|
|
|
b28b51 |
- dm branch
|
|
|
b28b51 |
- dockerinit -> docker-init
|
|
|
b28b51 |
|
|
|
b28b51 |
* Tue Oct 22 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.11.rc4
|
|
|
b28b51 |
- passing version information for docker build BZ #1017186
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sat Oct 19 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.10.rc4
|
|
|
b28b51 |
- rc version bump
|
|
|
b28b51 |
- docker-init -> dockerinit
|
|
|
b28b51 |
- zsh completion script installed to /usr/share/zsh/site-functions
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Oct 18 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.9.rc3
|
|
|
b28b51 |
- lxc-docker version matches package version
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Oct 18 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.8.rc3
|
|
|
b28b51 |
- double quotes removed from buildrequires as per existing golang rules
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Oct 11 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.7.rc3
|
|
|
b28b51 |
- xinetd file renamed to docker.xinetd for clarity
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Oct 10 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.6.rc3
|
|
|
b28b51 |
- patched for el6 to use sphinx-1.0-build
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Oct 09 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.5.rc3
|
|
|
b28b51 |
- rc3 version bump
|
|
|
b28b51 |
- exclusivearch x86_64
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Oct 09 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.4.rc2
|
|
|
b28b51 |
- debuginfo not Go-ready yet, skipped
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Oct 09 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-0.3.rc2
|
|
|
b28b51 |
- debuginfo package generated
|
|
|
b28b51 |
- buildrequires listed with versions where needed
|
|
|
b28b51 |
- conditionals changed to reflect systemd or not
|
|
|
b28b51 |
- docker commit value not needed
|
|
|
b28b51 |
- versioned provides lxc-docker
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon Oct 07 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-2.rc2
|
|
|
b28b51 |
- rc branch includes devmapper
|
|
|
b28b51 |
- el6 BZ #1015865 fix included
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sun Oct 06 2013 Lokesh Mandvekar <lsm5@redhat.com> - 0.7-1
|
|
|
b28b51 |
- version bump, includes devicemapper
|
|
|
b28b51 |
- epel conditionals included
|
|
|
b28b51 |
- buildrequires sqlite-devel
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Oct 04 2013 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.6.3-4.devicemapper
|
|
|
b28b51 |
- docker-io service enables IPv4 and IPv6 forwarding
|
|
|
b28b51 |
- docker user not needed
|
|
|
b28b51 |
- golang not supported on ppc64, docker-io excluded too
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Oct 03 2013 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.6.3-3.devicemapper
|
|
|
b28b51 |
- Docker rebuilt with latest kr/pty, first run issue solved
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Sep 27 2013 Marek Goldmann <mgoldman@redhat.com> - 0.6.3-2.devicemapper
|
|
|
b28b51 |
- Remove setfcap from lxc.cap.drop to make setxattr() calls working in the
|
|
|
b28b51 |
containers, RHBZ#1012952
|
|
|
b28b51 |
|
|
|
b28b51 |
* Thu Sep 26 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.3-1.devicemapper
|
|
|
b28b51 |
- version bump
|
|
|
b28b51 |
- new version solves docker push issues
|
|
|
b28b51 |
|
|
|
b28b51 |
* Tue Sep 24 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-14.devicemapper
|
|
|
b28b51 |
- package requires lxc
|
|
|
b28b51 |
|
|
|
b28b51 |
* Tue Sep 24 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-13.devicemapper
|
|
|
b28b51 |
- package requires tar
|
|
|
b28b51 |
|
|
|
b28b51 |
* Tue Sep 24 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-12.devicemapper
|
|
|
b28b51 |
- /var/lib/docker installed
|
|
|
b28b51 |
- package also provides lxc-docker
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon Sep 23 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-11.devicemapper
|
|
|
b28b51 |
- better looking url
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon Sep 23 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-10.devicemapper
|
|
|
b28b51 |
- release tag changed to denote devicemapper patch
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon Sep 23 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-9
|
|
|
b28b51 |
- device-mapper-devel is a buildrequires for alex's code
|
|
|
b28b51 |
- docker.service listed as a separate source file
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sun Sep 22 2013 Matthew Miller <mattdm@fedoraproject.org> 0.6.2-8
|
|
|
b28b51 |
- install bash completion
|
|
|
b28b51 |
- use -v for go build to show progress
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sun Sep 22 2013 Matthew Miller <mattdm@fedoraproject.org> 0.6.2-7
|
|
|
b28b51 |
- build and install separate docker-init
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sun Sep 22 2013 Matthew Miller <mattdm@fedoraproject.org> 0.6.2-4
|
|
|
b28b51 |
- update to use new source-only golang lib packages
|
|
|
b28b51 |
|
|
|
b28b51 |
* Sat Sep 21 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-3
|
|
|
b28b51 |
- man page generation from docs/.
|
|
|
b28b51 |
- systemd service file created
|
|
|
b28b51 |
- dotcloud/tar no longer required
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Sep 20 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-2
|
|
|
b28b51 |
- patched with alex larsson's devmapper code
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Sep 18 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.2-1
|
|
|
b28b51 |
- Version bump
|
|
|
b28b51 |
|
|
|
b28b51 |
* Tue Sep 10 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.1-2
|
|
|
b28b51 |
- buildrequires updated
|
|
|
b28b51 |
- package renamed to docker-io
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Aug 30 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.6.1-1
|
|
|
b28b51 |
- Version bump
|
|
|
b28b51 |
- Package name change from lxc-docker to docker
|
|
|
b28b51 |
- Makefile patched from 0.5.3
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Aug 28 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.5.3-5
|
|
|
b28b51 |
- File permissions settings included
|
|
|
b28b51 |
|
|
|
b28b51 |
* Wed Aug 28 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.5.3-4
|
|
|
b28b51 |
- Credits in changelog modified as per reference's request
|
|
|
b28b51 |
|
|
|
b28b51 |
* Tue Aug 27 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.5.3-3
|
|
|
b28b51 |
- Dependencies listed as rpm packages instead of tars
|
|
|
b28b51 |
- Install section added
|
|
|
b28b51 |
|
|
|
b28b51 |
* Mon Aug 26 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.5.3-2
|
|
|
b28b51 |
- Github packaging
|
|
|
b28b51 |
- Deps not downloaded at build time courtesy Elan Ruusamäe
|
|
|
b28b51 |
- Manpage and other docs installed
|
|
|
b28b51 |
|
|
|
b28b51 |
* Fri Aug 23 2013 Lokesh Mandvekar <lsm5@redhat.com> 0.5.3-1
|
|
|
b28b51 |
- Initial fedora package
|
|
|
b28b51 |
- Some credit to Elan Ruusamäe (glen@pld-linux.org)
|