summaryrefslogtreecommitdiffstats
path: root/recipes-containers/docker
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2015-06-22 13:10:06 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2015-06-22 13:14:42 -0400
commita89c11a3d89601f6d8499bd7d0f265cf4512d772 (patch)
tree699734a0ac7afae6e71a1883d8bcd9b8503a15f0 /recipes-containers/docker
parent2113be0a1d833480914396be15334e16c12ba097 (diff)
downloadmeta-virtualization-a89c11a3d89601f6d8499bd7d0f265cf4512d772.tar.gz
docker: add dependencies for out of box experience
Docker searching and launch looks for iptables, so we add it to the rdepends. To actually launch a container, netfilter nat and dm-think are often required, so we make those modules rrecommends. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-containers/docker')
-rw-r--r--recipes-containers/docker/docker_git.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes-containers/docker/docker_git.bb b/recipes-containers/docker/docker_git.bb
index f3c4007c..ab322350 100644
--- a/recipes-containers/docker/docker_git.bb
+++ b/recipes-containers/docker/docker_git.bb
@@ -56,8 +56,9 @@ DEPENDS = "golang-cross \
56 " 56 "
57 57
58DEPENDS_append_class-target = "lvm2" 58DEPENDS_append_class-target = "lvm2"
59RDEPENDS_${PN} = "curl aufs-util git cgroup-lite util-linux" 59RDEPENDS_${PN} = "curl aufs-util git cgroup-lite util-linux iptables"
60RRECOMMENDS_${PN} = "lxc docker-registry rt-tests" 60RRECOMMENDS_${PN} = "lxc docker-registry rt-tests"
61RRECOMMENDS_${PN} += " kernel-module-dm-thin-pool kernel-module-nf-nat"
61DOCKER_PKG="github.com/docker/docker" 62DOCKER_PKG="github.com/docker/docker"
62 63
63do_configure() { 64do_configure() {