python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / docker-engine / Config.in
blob1879a56fddead9ee99feb4313553e72c5ce69336
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_MMU # docker-containerd
17         select BR2_PACKAGE_DOCKER_CONTAINERD # runtime dependency
18         select BR2_PACKAGE_IPTABLES # runtime dependency
19         select BR2_PACKAGE_SQLITE # runtime dependency
20         default y
21         help
22           Build the Docker system daemon.
23           If not selected, will build client only.
25 config BR2_PACKAGE_DOCKER_ENGINE_EXPERIMENTAL
26         bool "build experimental features"
28 if BR2_PACKAGE_DOCKER_ENGINE_DAEMON
30 config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_BTRFS
31         bool "btrfs filesystem driver"
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         depends on !BR2_TOOLCHAIN_USES_MUSL # lvm2
44         select BR2_PACKAGE_LVM2
45         select BR2_PACKAGE_LVM2_APP_LIBRARY
46         help
47           Build the devicemapper filesystem driver for Docker.
49 config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_VFS
50         bool "vfs filesystem driver"
51         depends on BR2_USE_WCHAR # gvfs
52         depends on BR2_USE_MMU # gvfs
53         depends on BR2_TOOLCHAIN_HAS_THREADS # gvfs
54         select BR2_PACKAGE_GVFS
55         help
56           Build the vfs filesystem driver for Docker.
58 endif
60 endif
62 comment "docker-engine needs a toolchain w/ threads"
63         depends on BR2_PACKAGE_HOST_GO_ARCH_SUPPORTS
64         depends on BR2_PACKAGE_HOST_GO_CGO_LINKING_SUPPORTS
65         depends on !BR2_TOOLCHAIN_HAS_THREADS