2016-07-24 23:10:28 +02:00
|
|
|
config BR2_PACKAGE_DOCKER_ENGINE
|
|
|
|
bool "docker-engine"
|
2019-02-06 14:23:57 +01:00
|
|
|
depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS
|
|
|
|
depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS
|
2016-07-24 23:10:28 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2019-02-12 14:15:04 +01:00
|
|
|
depends on !BR2_TOOLCHAIN_USES_UCLIBC # docker-containerd -> runc
|
2019-02-01 23:04:08 +01:00
|
|
|
depends on BR2_USE_MMU # docker-containerd
|
2020-06-21 09:59:57 +02:00
|
|
|
select BR2_PACKAGE_CGROUPFS_MOUNT if !BR2_PACKAGE_SYSTEMD # runtime dependency
|
2019-02-01 23:04:08 +01:00
|
|
|
select BR2_PACKAGE_DOCKER_CONTAINERD # runtime dependency
|
|
|
|
select BR2_PACKAGE_DOCKER_PROXY # runtime dependency
|
|
|
|
select BR2_PACKAGE_IPTABLES # runtime dependency
|
|
|
|
select BR2_PACKAGE_SQLITE # runtime dependency
|
2016-07-24 23:10:28 +02:00
|
|
|
help
|
|
|
|
Docker is a platform to build, ship,
|
|
|
|
and run applications as lightweight containers.
|
|
|
|
|
|
|
|
https://github.com/docker/docker
|
|
|
|
|
|
|
|
if BR2_PACKAGE_DOCKER_ENGINE
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DOCKER_ENGINE_EXPERIMENTAL
|
|
|
|
bool "build experimental features"
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_BTRFS
|
|
|
|
bool "btrfs filesystem driver"
|
|
|
|
depends on BR2_USE_MMU # btrfs-progs
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # btrfs-progs
|
|
|
|
select BR2_PACKAGE_BTRFS_PROGS
|
|
|
|
help
|
|
|
|
Build the btrfs filesystem driver for Docker.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_DEVICEMAPPER
|
|
|
|
bool "devicemapper filesystem driver"
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # lvm2
|
|
|
|
depends on BR2_USE_MMU # lvm2
|
|
|
|
depends on !BR2_STATIC_LIBS # lvm2
|
2016-08-24 00:33:56 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_USES_MUSL # lvm2
|
2016-07-24 23:10:28 +02:00
|
|
|
select BR2_PACKAGE_LVM2
|
|
|
|
select BR2_PACKAGE_LVM2_APP_LIBRARY
|
|
|
|
help
|
|
|
|
Build the devicemapper filesystem driver for Docker.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_VFS
|
|
|
|
bool "vfs filesystem driver"
|
|
|
|
depends on BR2_USE_WCHAR # gvfs
|
|
|
|
depends on BR2_USE_MMU # gvfs
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # gvfs
|
2020-07-15 21:52:44 +02:00
|
|
|
depends on !BR2_STATIC_LIBS # gvfs
|
2016-07-24 23:10:28 +02:00
|
|
|
select BR2_PACKAGE_GVFS
|
|
|
|
help
|
|
|
|
Build the vfs filesystem driver for Docker.
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2019-04-01 20:23:47 +02:00
|
|
|
comment "docker-engine needs a glibc or musl toolchain w/ threads"
|
2019-02-06 14:23:57 +01:00
|
|
|
depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS
|
|
|
|
depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS
|
2019-04-01 20:23:47 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_UCLIBC
|
2019-02-01 23:04:08 +01:00
|
|
|
depends on BR2_USE_MMU
|