Accepting request 294716 from Virtualization
1 OBS-URL: https://build.opensuse.org/request/show/294716 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/docker?expand=0&rev=14
This commit is contained in:
parent
4888765dec
commit
42faa36b3e
@ -23,7 +23,7 @@ Index: docker/project/make/.dockerinit
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
+/usr/bin/strip -g $DEST/dockerinit-$VERSION
|
+/usr/bin/strip -s $DEST/dockerinit-$VERSION
|
||||||
+
|
+
|
||||||
# sha1 our new dockerinit to ensure separate docker and dockerinit always run in a perfect pair compiled for one another
|
# sha1 our new dockerinit to ensure separate docker and dockerinit always run in a perfect pair compiled for one another
|
||||||
export DOCKER_INITSHA1="$($sha1sum $DEST/dockerinit-$VERSION | cut -d' ' -f1)"
|
export DOCKER_INITSHA1="$($sha1sum $DEST/dockerinit-$VERSION | cut -d' ' -f1)"
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 3 19:57:38 UTC 2015 - dmueller@suse.com
|
||||||
|
|
||||||
|
- enable build for armv7l
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 3 14:59:35 UTC 2015 - fcastelli@suse.com
|
||||||
|
|
||||||
|
- Updated docker.spec to fixed building with the latest version of our
|
||||||
|
Go pacakge.
|
||||||
|
- Updated 0002-Stripped-dockerinit-binary.patch to fix check made by
|
||||||
|
the docker daemon against the dockerinit binary.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 27 10:29:35 UTC 2015 - fcastelli@suse.com
|
||||||
|
|
||||||
|
- Updated systemd service and socket units to fix socket activation
|
||||||
|
and to align with best practices recommended by upstram. Moreover
|
||||||
|
socket activation fixes bnc#920645.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Feb 11 13:59:01 UTC 2015 - fcastelli@suse.com
|
Wed Feb 11 13:59:01 UTC 2015 - fcastelli@suse.com
|
||||||
|
|
||||||
|
@ -1,13 +1,17 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Docker
|
Description=Docker Application Container Engine
|
||||||
Requires=network.target
|
Documentation=http://docs.docker.com
|
||||||
After=multi-user.target
|
After=network.target docker.socket
|
||||||
|
Requires=docker.socket
|
||||||
[Service]
|
|
||||||
Type=simple
|
[Service]
|
||||||
EnvironmentFile=/etc/sysconfig/docker
|
EnvironmentFile=/etc/sysconfig/docker
|
||||||
ExecStart=/usr/bin/docker -d $DOCKER_OPTS
|
ExecStart=/usr/bin/docker -d -H fd:// $DOCKER_OPTS
|
||||||
|
MountFlags=slave
|
||||||
[Install]
|
LimitNOFILE=1048576
|
||||||
WantedBy=multi-user.target
|
LimitNPROC=1048576
|
||||||
|
LimitCORE=infinity
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Docker Socket for the API
|
Description=Docker Socket for the API
|
||||||
|
PartOf=docker.service
|
||||||
|
|
||||||
[Socket]
|
[Socket]
|
||||||
ListenStream=/var/run/docker.sock
|
ListenStream=/var/run/docker.sock
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package docker
|
# spec file for package docker
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -60,7 +60,7 @@ Requires: xz >= 4.9
|
|||||||
Conflicts: lxc < 1.0
|
Conflicts: lxc < 1.0
|
||||||
PreReq: %fillup_prereq
|
PreReq: %fillup_prereq
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
ExclusiveArch: x86_64
|
ExclusiveArch: armv7hl x86_64
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Docker complements LXC with a high-level API which operates at the process
|
Docker complements LXC with a high-level API which operates at the process
|
||||||
@ -98,8 +98,6 @@ Zsh command line completion support for %{name}.
|
|||||||
cp %{SOURCE7} .
|
cp %{SOURCE7} .
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{go_disable_brp_strip_static_archive}
|
|
||||||
|
|
||||||
export AUTO_GOPATH=1
|
export AUTO_GOPATH=1
|
||||||
export DOCKER_BUILDTAGS="exclude_graphdriver_aufs apparmor selinux"
|
export DOCKER_BUILDTAGS="exclude_graphdriver_aufs apparmor selinux"
|
||||||
export DOCKER_GITCOMMIT=%{git_version}
|
export DOCKER_GITCOMMIT=%{git_version}
|
||||||
|
Loading…
Reference in New Issue
Block a user