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.

95 lines
2.5 KiB

  1. config DOCKER_KERNEL_OPTIONS
  2. bool "Enable Basic kernel support for Docker"
  3. depends on PACKAGE_docker-ce
  4. default y
  5. select KERNEL_CGROUPS
  6. select KERNEL_CGROUP_CPUACCT
  7. select KERNEL_CGROUP_DEVICE
  8. select KERNEL_CGROUP_FREEZER
  9. select KERNEL_CGROUP_SCHED
  10. select KERNEL_NAMESPACES
  11. select KERNEL_CPUSETS
  12. select KERNEL_MEMCG
  13. select KERNEL_KEYS
  14. select KERNEL_POSIX_MQUEUE
  15. help
  16. Select needed kernel options for Docker. Options include
  17. cgroups, namespaces and other miscellaneous options.
  18. see also https://github.com/docker/engine/blob/master/contrib/check-config.sh
  19. config DOCKER_SECCOMP
  20. bool "Enable support for seccomp in Docker"
  21. depends on PACKAGE_docker-ce
  22. default n
  23. select KERNEL_SECCOMP
  24. select PACKAGE_libseccomp
  25. help
  26. Build Docker with support for seccomp filters.
  27. Select libseccomp which also pulls-in the needed kernel features.
  28. config DOCKER_RES_SHAPE
  29. bool "Enables support for resource shaping"
  30. depends on PACKAGE_docker-ce
  31. default n
  32. select KERNEL_MEMCG_SWAP
  33. select KERNEL_MEMCG_SWAP_ENABLED
  34. select KERNEL_BLK_DEV_THROTTLING
  35. select KERNEL_CFQ_GROUP_IOSCHED
  36. select KERNEL_CGROUP_PERF
  37. select KERNEL_CGROUP_HUGETLB
  38. select KERNEL_FAIR_GROUP_SCHED
  39. select KERNEL_NET_CLS_CGROUP
  40. select KERNEL_CGROUP_NET_CLASSID
  41. select KERNEL_CGROUP_NET_PRIO
  42. select KERNEL_CFS_BANDWIDTH
  43. select KERNEL_RT_GROUP_SCHED
  44. menu "Network"
  45. depends on PACKAGE_docker-ce
  46. config DOCKER_NET_OVERLAY
  47. bool "Enables the Overlay network feature"
  48. default n
  49. select PACKAGE_kmod-udptunnel4
  50. help
  51. Selects kernel options for the Overlay network feature.
  52. Includes udptunnel4
  53. config DOCKER_NET_ENCRYPT
  54. bool "Enable encrypted networking kernel support"
  55. depends on DOCKER_NET_OVERLAY
  56. default n
  57. select PACKAGE_kmod-ipsec
  58. select PACKAGE_kmod-ipsec4
  59. select PACKAGE_kmod-crypto-gcm
  60. select PACKAGE_kmod-crypto-ghash
  61. help
  62. Select needed kernel options for encrypted networking support.
  63. config DOCKER_NET_MACVLAN
  64. bool "Enables macvlan kernel support"
  65. default n
  66. select PACKAGE_kmod-macvlan
  67. select PACKAGE_kmod-dummy
  68. config DOCKER_NET_TFTP
  69. bool "Enable ftp/tftp client kernel support"
  70. default n
  71. select PACKAGE_kmod-nf-nathelper
  72. select PACKAGE_kmod-nf-nathelper-extra
  73. endmenu
  74. menu "Storage"
  75. depends on PACKAGE_docker-ce
  76. config DOCKER_STO_EXT4
  77. bool "Enables support for ext3 or ext4 as the backing filesystem"
  78. default n
  79. select KERNEL_EXT4_FS_POSIX_ACL
  80. config DOCKER_STO_BTRFS
  81. bool "Enables support for btrfs as the backing filesystem"
  82. default n
  83. select PACKAGE_kmod-fs-btrfs
  84. select KERNEL_BTRFS_FS_POSIX_ACL
  85. endmenu