You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
2.3 KiB

  1. config DOCKER_CHECK_CONFIG
  2. bool "Installs check-config.sh with dependencies"
  3. default n
  4. depends on PACKAGE_dockerd
  5. select PACKAGE_bash
  6. select PACKAGE_kmod-ikconfig
  7. # These options are mostly specified by https://github.com/moby/moby/blob/master/contrib/check-config.sh
  8. config DOCKER_CGROUP_OPTIONS
  9. bool "Enable available kernel support for CGroupsV1"
  10. default n
  11. depends on PACKAGE_dockerd
  12. select KERNEL_CGROUP_DEVICE
  13. select KERNEL_CGROUP_FREEZER
  14. select KERNEL_NET_CLS_CGROUP
  15. select KERNEL_CGROUP_NET_PRIO
  16. select PACKAGE_cgroupfs-mount
  17. help
  18. Selects kernel options to enable CGroups V1.
  19. config DOCKER_OPTIONAL_FEATURES
  20. bool "Enable optional kernel support for Docker"
  21. default n
  22. depends on PACKAGE_dockerd
  23. select KERNEL_MEMCG_SWAP_ENABLED
  24. select KERNEL_CFQ_GROUP_IOSCHED
  25. select KERNEL_CGROUP_PERF
  26. select KERNEL_CGROUP_HUGETLB
  27. help
  28. Select 'Optional Features' kernel options for Docker that are unselected.
  29. See https://github.com/moby/moby/blob/master/contrib/check-config.sh
  30. menu "Network"
  31. depends on PACKAGE_dockerd
  32. config DOCKER_NET_OVERLAY
  33. bool "Includes the Overlay network feature"
  34. default n
  35. select PACKAGE_kmod-vxlan
  36. help
  37. Selects kmod-vxlan for the Overlay network feature.
  38. config DOCKER_NET_ENCRYPT
  39. bool "Includes encrypted networking kernel modules"
  40. depends on DOCKER_NET_OVERLAY
  41. default n
  42. select PACKAGE_kmod-crypto-gcm
  43. select PACKAGE_kmod-crypto-seqiv
  44. select PACKAGE_kmod-crypto-ghash
  45. select PACKAGE_kmod-ipsec
  46. help
  47. Select needed kernel modules for encrypted networking support.
  48. config DOCKER_NET_MACVLAN
  49. bool "Includes macvlan kernel modules"
  50. default n
  51. select PACKAGE_kmod-macvlan
  52. select PACKAGE_kmod-dummy
  53. config DOCKER_NET_TFTP
  54. bool "Includes ftp/tftp client kernel modules"
  55. default n
  56. select PACKAGE_kmod-nf-nathelper
  57. select PACKAGE_kmod-nf-nathelper-extra
  58. endmenu
  59. menu "Storage"
  60. depends on PACKAGE_dockerd
  61. config DOCKER_STO_DEVMAPPER
  62. bool "Enables support for devmapper snapshotting"
  63. default n
  64. select PACKAGE_libdevmapper
  65. config DOCKER_STO_EXT4
  66. bool "Enables support for ext3 or ext4 as the backing filesystem"
  67. default n
  68. select KERNEL_EXT4_FS_POSIX_ACL
  69. select KERNEL_EXT4_FS_SECURITY
  70. config DOCKER_STO_BTRFS
  71. bool "Enables support for btrfs as the backing filesystem"
  72. default n
  73. select KERNEL_BTRFS_FS_POSIX_ACL
  74. select PACKAGE_btrfs-progs
  75. endmenu