Accepting request 317983 from Virtualization:containers
fix build fail with debuginfo enabled by running fdupes and... - Update to 1.7.1 (2015-07-14) (bnc#938156) Runtime Fix default user spawning exec process with docker exec Make --bridge=none not to configure the network bridge Publish networking stats properly Fix implicit devicemapper selection with static binaries Fix socket connections that hung intermittently Fix bridge interface creation on CentOS/RHEL 6.6 Fix local dns lookups added to resolv.conf Fix copy command mounting volumes Fix read/write privileges in volumes mounted with --volumes-from Remote API Fix unmarshalling of Command and Entrypoint Set limit for minimum client version supported Validate port specification Return proper errors when attach/reattach fail Distribution Fix pulling private images Fix fallback between registry V2 and V1 OBS-URL: https://build.opensuse.org/request/show/317983 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/docker?expand=0&rev=19
This commit is contained in:
commit
4eaf3b6ba1
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:760807f5c0a28f5262006704d2c682733bf7cddc4bfb1464f7b7eb88c84cb9a6
|
|
||||||
size 6524566
|
|
3
docker-1.7.1.tar.bz2
Normal file
3
docker-1.7.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:60a89e67c39b92433620526921db1d0f358ec55c435186c2fcfaccc38c41ef88
|
||||||
|
size 6542679
|
@ -1,3 +1,32 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 15 08:11:11 UTC 2015 - jmassaguerpla@suse.com
|
||||||
|
|
||||||
|
- Update to 1.7.1 (2015-07-14) (bnc#938156)
|
||||||
|
Runtime
|
||||||
|
|
||||||
|
Fix default user spawning exec process with docker exec
|
||||||
|
Make --bridge=none not to configure the network bridge
|
||||||
|
Publish networking stats properly
|
||||||
|
Fix implicit devicemapper selection with static binaries
|
||||||
|
Fix socket connections that hung intermittently
|
||||||
|
Fix bridge interface creation on CentOS/RHEL 6.6
|
||||||
|
Fix local dns lookups added to resolv.conf
|
||||||
|
Fix copy command mounting volumes
|
||||||
|
Fix read/write privileges in volumes mounted with --volumes-from
|
||||||
|
|
||||||
|
Remote API
|
||||||
|
|
||||||
|
Fix unmarshalling of Command and Entrypoint
|
||||||
|
Set limit for minimum client version supported
|
||||||
|
Validate port specification
|
||||||
|
Return proper errors when attach/reattach fail
|
||||||
|
|
||||||
|
Distribution
|
||||||
|
|
||||||
|
Fix pulling private images
|
||||||
|
Fix fallback between registry V2 and V1
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 10 11:22:00 UTC 2015 - jmassaguerpla@suse.com
|
Fri Jul 10 11:22:00 UTC 2015 - jmassaguerpla@suse.com
|
||||||
|
|
||||||
|
10
docker.spec
10
docker.spec
@ -16,10 +16,10 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define git_version 0baf609
|
%define git_version 786b29d
|
||||||
%define go_arches %ix86 x86_64
|
%define go_arches %ix86 x86_64
|
||||||
Name: docker
|
Name: docker
|
||||||
Version: 1.7.0
|
Version: 1.7.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The Linux container runtime
|
Summary: The Linux container runtime
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@ -59,6 +59,7 @@ BuildRequires: go-go-md2man
|
|||||||
%else
|
%else
|
||||||
BuildRequires: gcc5-go >= 5.0
|
BuildRequires: gcc5-go >= 5.0
|
||||||
%endif
|
%endif
|
||||||
|
BuildRequires: fdupes
|
||||||
BuildRequires: libapparmor-devel
|
BuildRequires: libapparmor-devel
|
||||||
BuildRequires: libbtrfs-devel >= 3.8
|
BuildRequires: libbtrfs-devel >= 3.8
|
||||||
BuildRequires: procps
|
BuildRequires: procps
|
||||||
@ -134,7 +135,7 @@ BuildArch: noarch
|
|||||||
Test package for docker. It contains the source code and the tests.
|
Test package for docker. It contains the source code and the tests.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n docker
|
%setup -q -n docker-%{version}
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
%ifnarch %go_arches
|
%ifnarch %go_arches
|
||||||
@ -212,6 +213,8 @@ install -d %{buildroot}%{_mandir}/man5
|
|||||||
install -p -m 644 man/man5/Dockerfile.5 %{buildroot}%{_mandir}/man5
|
install -p -m 644 man/man5/Dockerfile.5 %{buildroot}%{_mandir}/man5
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
%fdupes %{buildroot}
|
||||||
|
|
||||||
%pre
|
%pre
|
||||||
echo "creating group docker..."
|
echo "creating group docker..."
|
||||||
groupadd -r docker 2>/dev/null || :
|
groupadd -r docker 2>/dev/null || :
|
||||||
@ -233,7 +236,6 @@ groupadd -r docker 2>/dev/null || :
|
|||||||
%{_bindir}/docker
|
%{_bindir}/docker
|
||||||
%{_sbindir}/rcdocker
|
%{_sbindir}/rcdocker
|
||||||
%{_prefix}/lib/docker/
|
%{_prefix}/lib/docker/
|
||||||
%{_prefix}/lib/docker/dockerinit
|
|
||||||
%{_unitdir}/%{name}.service
|
%{_unitdir}/%{name}.service
|
||||||
%{_unitdir}/%{name}.socket
|
%{_unitdir}/%{name}.socket
|
||||||
%{_prefix}/lib/udev/rules.d/80-%{name}.rules
|
%{_prefix}/lib/udev/rules.d/80-%{name}.rules
|
||||||
|
Loading…
Reference in New Issue
Block a user