1config BR2_PACKAGE_DOCKER_CLI 2 bool "docker-cli" 3 depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS 4 depends on BR2_PACKAGE_HOST_GO_TARGET_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/cli 11 12if BR2_PACKAGE_DOCKER_CLI 13 14config BR2_PACKAGE_DOCKER_CLI_STATIC 15 bool "build static client" 16 depends on !BR2_STATIC_LIBS 17 help 18 Build a static docker client. 19 20endif 21 22comment "docker-cli needs a toolchain w/ threads" 23 depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS 24 depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS 25 depends on !BR2_TOOLCHAIN_HAS_THREADS 26