forked from pool/docker
Accepting request 286657 from Virtualization
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/286657 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/docker?expand=0&rev=13
This commit is contained in:
parent
2bc802d474
commit
4888765dec
@ -15,18 +15,15 @@ This commit strips the debugging symbols from `dockerinit` _before_ the
|
|||||||
hack/make/dynbinary | 1 +
|
hack/make/dynbinary | 1 +
|
||||||
1 file changed, 1 insertion(+)
|
1 file changed, 1 insertion(+)
|
||||||
|
|
||||||
diff --git a/hack/make/dynbinary b/hack/make/dynbinary
|
Index: docker/project/make/.dockerinit
|
||||||
index 75cffe3..0143a9c 100644
|
===================================================================
|
||||||
--- a/hack/make/dynbinary
|
--- docker.orig/project/make/.dockerinit
|
||||||
+++ b/hack/make/dynbinary
|
+++ docker/project/make/.dockerinit
|
||||||
@@ -15,6 +15,7 @@ if [ -z "$DOCKER_CLIENTONLY" ]; then
|
@@ -25,5 +25,7 @@ else
|
||||||
./dockerinit
|
exit 1
|
||||||
echo "Created binary: $DEST/dockerinit-$VERSION"
|
fi
|
||||||
ln -sf "dockerinit-$VERSION" "$DEST/dockerinit"
|
|
||||||
+ /usr/bin/strip -g $DEST/dockerinit
|
+/usr/bin/strip -g $DEST/dockerinit-$VERSION
|
||||||
|
+
|
||||||
hash_files "$DEST/dockerinit-$VERSION"
|
# 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)"
|
||||||
--
|
|
||||||
1.8.4.5
|
|
||||||
|
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b9852cbabf81bae75acc141801a9aa5db2839e21b9900b7b79ba5905e1b620d3
|
|
||||||
size 5837275
|
|
3
docker-1.5.0.tar.bz2
Normal file
3
docker-1.5.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f338cd9ea4996dac9a8fa8a180b9ff147487e55a5a8c74e552f16f5de7ce26df
|
||||||
|
size 6228117
|
@ -1,3 +1,61 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 11 13:59:01 UTC 2015 - fcastelli@suse.com
|
||||||
|
|
||||||
|
- Updated to 1.5.0 (2015-02-10):
|
||||||
|
* Builder:
|
||||||
|
- Dockerfile to use for a given `docker build` can be specified with
|
||||||
|
the `-f` flag
|
||||||
|
- Dockerfile and .dockerignore files can be themselves excluded as part
|
||||||
|
of the .dockerignore file, thus preventing modifications to these files
|
||||||
|
invalidating ADD or COPY instructions cache
|
||||||
|
- ADD and COPY instructions accept relative paths
|
||||||
|
- Dockerfile `FROM scratch` instruction is now interpreted as a no-base
|
||||||
|
specifier
|
||||||
|
- Improve performance when exposing a large number of ports
|
||||||
|
* Hack:
|
||||||
|
- Allow client-side only integration tests for Windows
|
||||||
|
- Include docker-py integration tests against Docker daemon as part of our
|
||||||
|
test suites
|
||||||
|
* Packaging:
|
||||||
|
- Support for the new version of the registry HTTP API
|
||||||
|
- Speed up `docker push` for images with a majority of already existing
|
||||||
|
layers
|
||||||
|
- Fixed contacting a private registry through a proxy
|
||||||
|
* Remote API:
|
||||||
|
- A new endpoint will stream live container resource metrics and can be
|
||||||
|
accessed with the `docker stats` command
|
||||||
|
- Containers can be renamed using the new `rename` endpoint and the
|
||||||
|
associated `docker rename` command
|
||||||
|
- Container `inspect` endpoint show the ID of `exec` commands running in
|
||||||
|
this container
|
||||||
|
- Container `inspect` endpoint show the number of times Docker
|
||||||
|
auto-restarted the container
|
||||||
|
- New types of event can be streamed by the `events` endpoint: ‘OOM’
|
||||||
|
(container died with out of memory), ‘exec_create’, and ‘exec_start'
|
||||||
|
- Fixed returned string fields which hold numeric characters incorrectly
|
||||||
|
omitting surrounding double quotes
|
||||||
|
* Runtime:
|
||||||
|
- Docker daemon has full IPv6 support
|
||||||
|
- The `docker run` command can take the `--pid=host` flag to use the host
|
||||||
|
PID namespace, which makes it possible for example to debug host processes
|
||||||
|
using containerized debugging tools
|
||||||
|
- The `docker run` command can take the `--read-only` flag to make the
|
||||||
|
container’s root filesystem mounted as readonly, which can be used in
|
||||||
|
combination with volumes to force a container’s processes to only write to
|
||||||
|
locations that will be persisted
|
||||||
|
- Container total memory usage can be limited for `docker run` using the
|
||||||
|
`—memory-swap` flag
|
||||||
|
- Major stability improvements for devicemapper storage driver
|
||||||
|
- Better integration with host system: containers will reflect changes
|
||||||
|
to the host's `/etc/resolv.conf` file when restarted
|
||||||
|
- Better integration with host system: per-container iptable rules are moved
|
||||||
|
to the DOCKER chain
|
||||||
|
- Fixed container exiting on out of memory to return an invalid exit code
|
||||||
|
* Other:
|
||||||
|
- The HTTP_PROXY, HTTPS_PROXY, and NO_PROXY environment variables are
|
||||||
|
properly taken into account by the client when connecting to the
|
||||||
|
Docker daemon
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 15 10:00:07 UTC 2015 - fcastelli@suse.com
|
Thu Jan 15 10:00:07 UTC 2015 - fcastelli@suse.com
|
||||||
|
|
||||||
|
@ -16,9 +16,9 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define git_version 5bc2ff8
|
%define git_version a8a31ef
|
||||||
Name: docker
|
Name: docker
|
||||||
Version: 1.4.1
|
Version: 1.5.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The Linux container runtime
|
Summary: The Linux container runtime
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
|
Loading…
Reference in New Issue
Block a user