memcached: bump version to 1.4.36
[buildroot-gz.git] / package / docker-engine / Config.in
blob7cf0d9e1ae59e49328fe84710f5cd8965a2688a7
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 config BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT
29         bool "build static client"
30         depends on !BR2_STATIC_LIBS
31         help
32           Build a static docker client.
34 if BR2_PACKAGE_DOCKER_ENGINE_DAEMON
36 config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_BTRFS
37         bool "btrfs filesystem driver"
38         depends on BR2_USE_MMU # btrfs-progs
39         depends on BR2_TOOLCHAIN_HAS_THREADS # btrfs-progs
40         select BR2_PACKAGE_BTRFS_PROGS
41         help
42           Build the btrfs filesystem driver for Docker.
44 config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_DEVICEMAPPER
45         bool "devicemapper filesystem driver"
46         depends on BR2_TOOLCHAIN_HAS_THREADS # lvm2
47         depends on BR2_USE_MMU # lvm2
48         depends on !BR2_STATIC_LIBS # lvm2
49         depends on !BR2_TOOLCHAIN_USES_MUSL # lvm2
50         select BR2_PACKAGE_LVM2
51         select BR2_PACKAGE_LVM2_APP_LIBRARY
52         help
53           Build the devicemapper filesystem driver for Docker.
55 config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_VFS
56         bool "vfs filesystem driver"
57         depends on BR2_USE_WCHAR # gvfs
58         depends on BR2_USE_MMU # gvfs
59         depends on BR2_TOOLCHAIN_HAS_THREADS # gvfs
60         select BR2_PACKAGE_GVFS
61         help
62           Build the vfs filesystem driver for Docker.
64 endif
66 endif
68 comment "docker-engine needs a toolchain w/ threads"
69         depends on BR2_PACKAGE_HOST_GO_ARCH_SUPPORTS
70         depends on BR2_PACKAGE_HOST_GO_CGO_LINKING_SUPPORTS
71         depends on !BR2_TOOLCHAIN_HAS_THREADS