diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2016-07-26 14:03:46 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2016-07-27 00:16:53 -0400 |
commit | 1fd5a596ed72bb187fdcc1ec614e7a3482741f10 (patch) | |
tree | 10ed5ad3e5a852067ebae6ea57d3b90f79020a6a /recipes-containers/docker/docker_git.bb | |
parent | 7d41ad142db239fd7280c51b369f906e255619b1 (diff) | |
download | meta-virtualization-1fd5a596ed72bb187fdcc1ec614e7a3482741f10.tar.gz |
containers: uprev docker (1.12.0), runc (1.0.0-rc) and containerd (0.2.2)
Bumping the version of docker and dependencies. This gets us closer to
runc 1.0, which is the foundation for future OCI efforts.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-containers/docker/docker_git.bb')
-rw-r--r-- | recipes-containers/docker/docker_git.bb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/recipes-containers/docker/docker_git.bb b/recipes-containers/docker/docker_git.bb index 97700f02..f3c940d1 100644 --- a/recipes-containers/docker/docker_git.bb +++ b/recipes-containers/docker/docker_git.bb | |||
@@ -18,7 +18,7 @@ DESCRIPTION = "Linux container runtime \ | |||
18 | subtle and/or glaring issues. \ | 18 | subtle and/or glaring issues. \ |
19 | " | 19 | " |
20 | 20 | ||
21 | SRCREV = "5604cbed50d51c4039b1abcb1cf87c4e01bce924" | 21 | SRCREV = "34d9a8240914d30f3a8fe28c1b7d1d4e36d0657b" |
22 | SRC_URI = "\ | 22 | SRC_URI = "\ |
23 | git://github.com/docker/docker.git;nobranch=1 \ | 23 | git://github.com/docker/docker.git;nobranch=1 \ |
24 | file://docker.service \ | 24 | file://docker.service \ |
@@ -32,7 +32,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=cc2221abf0b96ea39dd68141b70f7937" | |||
32 | 32 | ||
33 | S = "${WORKDIR}/git" | 33 | S = "${WORKDIR}/git" |
34 | 34 | ||
35 | DOCKER_VERSION = "1.11.1" | 35 | DOCKER_VERSION = "1.12.0" |
36 | PV = "${DOCKER_VERSION}+git${SRCREV}" | 36 | PV = "${DOCKER_VERSION}+git${SRCREV}" |
37 | 37 | ||
38 | DEPENDS = "go-cross \ | 38 | DEPENDS = "go-cross \ |
@@ -108,7 +108,9 @@ INITSCRIPT_PARAMS_${PN} = "${OS_DEFAULT_INITSCRIPT_PARAMS}" | |||
108 | 108 | ||
109 | do_install() { | 109 | do_install() { |
110 | mkdir -p ${D}/${bindir} | 110 | mkdir -p ${D}/${bindir} |
111 | cp ${S}/bundles/${DOCKER_VERSION}/dynbinary/docker-${DOCKER_VERSION} ${D}/${bindir}/docker | 111 | cp ${S}/bundles/latest/dynbinary-client/docker ${D}/${bindir}/docker |
112 | cp ${S}/bundles/latest/dynbinary-daemon/dockerd ${D}/${bindir}/dockerd | ||
113 | cp ${S}/bundles/latest/dynbinary-daemon/docker-proxy ${D}/${bindir}/docker-proxy | ||
112 | 114 | ||
113 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 115 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
114 | install -d ${D}${systemd_unitdir}/system | 116 | install -d ${D}${systemd_unitdir}/system |