]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/docker-engine/Config.in
docker-engine: add dependency on docker-proxy
[coffee/buildroot.git] / package / docker-engine / Config.in
1 config BR2_PACKAGE_DOCKER_ENGINE
2         bool "docker-engine"
3         depends on BR2_PACKAGE_HOST_GO_ARCH_SUPPORTS
4         depends on BR2_PACKAGE_HOST_GO_CGO_LINKING_SUPPORTS
5         depends on BR2_TOOLCHAIN_HAS_THREADS
6         help
7           Docker is a platform to build, ship,
8           and run applications as lightweight containers.
9
10           https://github.com/docker/docker
11
12 if BR2_PACKAGE_DOCKER_ENGINE
13
14 config BR2_PACKAGE_DOCKER_ENGINE_DAEMON
15         bool "docker daemon"
16         default y
17         depends on BR2_USE_MMU # docker-containerd
18         select BR2_PACKAGE_DOCKER_CONTAINERD # runtime dependency
19         select BR2_PACKAGE_DOCKER_PROXY # runtime dependency
20         select BR2_PACKAGE_IPTABLES # runtime dependency
21         select BR2_PACKAGE_SQLITE # runtime dependency
22         help
23           Build the Docker system daemon.
24           If not selected, will build client only.
25
26 config BR2_PACKAGE_DOCKER_ENGINE_EXPERIMENTAL
27         bool "build experimental features"
28
29 config BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT
30         bool "build static client"
31         depends on !BR2_STATIC_LIBS
32         help
33           Build a static docker client.
34
35 if BR2_PACKAGE_DOCKER_ENGINE_DAEMON
36
37 config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_BTRFS
38         bool "btrfs filesystem driver"
39         depends on BR2_USE_MMU # btrfs-progs
40         depends on BR2_TOOLCHAIN_HAS_THREADS # btrfs-progs
41         select BR2_PACKAGE_BTRFS_PROGS
42         help
43           Build the btrfs filesystem driver for Docker.
44
45 config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_DEVICEMAPPER
46         bool "devicemapper filesystem driver"
47         depends on BR2_TOOLCHAIN_HAS_THREADS # lvm2
48         depends on BR2_USE_MMU # lvm2
49         depends on !BR2_STATIC_LIBS # lvm2
50         depends on !BR2_TOOLCHAIN_USES_MUSL # lvm2
51         select BR2_PACKAGE_LVM2
52         select BR2_PACKAGE_LVM2_APP_LIBRARY
53         help
54           Build the devicemapper filesystem driver for Docker.
55
56 config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_VFS
57         bool "vfs filesystem driver"
58         depends on BR2_USE_WCHAR # gvfs
59         depends on BR2_USE_MMU # gvfs
60         depends on BR2_TOOLCHAIN_HAS_THREADS # gvfs
61         select BR2_PACKAGE_GVFS
62         help
63           Build the vfs filesystem driver for Docker.
64
65 endif
66
67 endif
68
69 comment "docker-engine needs a toolchain w/ threads"
70         depends on BR2_PACKAGE_HOST_GO_ARCH_SUPPORTS
71         depends on BR2_PACKAGE_HOST_GO_CGO_LINKING_SUPPORTS
72         depends on !BR2_TOOLCHAIN_HAS_THREADS