diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-06-22 13:10:06 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-06-22 13:14:42 -0400 |
commit | a89c11a3d89601f6d8499bd7d0f265cf4512d772 (patch) | |
tree | 699734a0ac7afae6e71a1883d8bcd9b8503a15f0 | |
parent | 2113be0a1d833480914396be15334e16c12ba097 (diff) | |
download | meta-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>
-rw-r--r-- | recipes-containers/docker/docker_git.bb | 3 |
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 | ||
58 | DEPENDS_append_class-target = "lvm2" | 58 | DEPENDS_append_class-target = "lvm2" |
59 | RDEPENDS_${PN} = "curl aufs-util git cgroup-lite util-linux" | 59 | RDEPENDS_${PN} = "curl aufs-util git cgroup-lite util-linux iptables" |
60 | RRECOMMENDS_${PN} = "lxc docker-registry rt-tests" | 60 | RRECOMMENDS_${PN} = "lxc docker-registry rt-tests" |
61 | RRECOMMENDS_${PN} += " kernel-module-dm-thin-pool kernel-module-nf-nat" | ||
61 | DOCKER_PKG="github.com/docker/docker" | 62 | DOCKER_PKG="github.com/docker/docker" |
62 | 63 | ||
63 | do_configure() { | 64 | do_configure() { |