docker-engine: new package
[buildroot-gz.git] / package / docker-engine / Config.in
bloba22786afaa507135cdd7234b60ad9fa6ba3bc995
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.
10           https://github.com/docker/docker
12 if BR2_PACKAGE_DOCKER_ENGINE
14 config BR2_PACKAGE_DOCKER_ENGINE_DAEMON
15         bool "docker daemon"
16         depends on BR2_USE_WCHAR # docker-containerd
17         select BR2_PACKAGE_DOCKER_CONTAINERD # runtime dependency
18         select BR2_PACKAGE_SQLITE # runtime dependency
19         default y
20         help
21           Build the Docker system daemon.
22           If not selected, will build client only.
24 config BR2_PACKAGE_DOCKER_ENGINE_EXPERIMENTAL
25         bool "build experimental features"
27 if BR2_PACKAGE_DOCKER_ENGINE_DAEMON
29 config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_BTRFS
30         bool "btrfs filesystem driver"
31         depends on BR2_USE_WCHAR # btrfs-progs
32         depends on BR2_USE_MMU # btrfs-progs
33         depends on BR2_TOOLCHAIN_HAS_THREADS # btrfs-progs
34         select BR2_PACKAGE_BTRFS_PROGS
35         help
36           Build the btrfs filesystem driver for Docker.
38 config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_DEVICEMAPPER
39         bool "devicemapper filesystem driver"
40         depends on BR2_TOOLCHAIN_HAS_THREADS # lvm2
41         depends on BR2_USE_MMU # lvm2
42         depends on !BR2_STATIC_LIBS # lvm2
43         select BR2_PACKAGE_LVM2
44         select BR2_PACKAGE_LVM2_APP_LIBRARY
45         help
46           Build the devicemapper filesystem driver for Docker.
48 config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_VFS
49         bool "vfs filesystem driver"
50         depends on BR2_USE_WCHAR # gvfs
51         depends on BR2_USE_MMU # gvfs
52         depends on BR2_TOOLCHAIN_HAS_THREADS # gvfs
53         select BR2_PACKAGE_GVFS
54         help
55           Build the vfs filesystem driver for Docker.
57 endif
59 endif
61 comment "docker-engine needs a toolchain w/ threads"
62         depends on BR2_PACKAGE_HOST_GO_ARCH_SUPPORTS
63         depends on BR2_PACKAGE_HOST_GO_CGO_LINKING_SUPPORTS
64         depends on !BR2_TOOLCHAIN_HAS_THREADS