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.

94 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_PRIO
  41. select KERNEL_CFS_BANDWIDTH
  42. select KERNEL_RT_GROUP_SCHED
  43. menu "Network"
  44. depends on PACKAGE_docker-ce
  45. config DOCKER_NET_OVERLAY
  46. bool "Enables the Overlay network feature"
  47. default n
  48. select PACKAGE_kmod-udptunnel4
  49. help
  50. Selects kernel options for the Overlay network feature.
  51. Includes udptunnel4
  52. config DOCKER_NET_ENCRYPT
  53. bool "Enable encrypted networking kernel support"
  54. depends on DOCKER_NET_OVERLAY
  55. default n
  56. select PACKAGE_kmod-ipsec
  57. select PACKAGE_kmod-ipsec4
  58. select PACKAGE_kmod-crypto-gcm
  59. select PACKAGE_kmod-crypto-ghash
  60. help
  61. Select needed kernel options for encrypted networking support.
  62. config DOCKER_NET_MACVLAN
  63. bool "Enables macvlan kernel support"
  64. default n
  65. select PACKAGE_kmod-macvlan
  66. select PACKAGE_kmod-dummy
  67. config DOCKER_NET_TFTP
  68. bool "Enable ftp/tftp client kernel support"
  69. default n
  70. select PACKAGE_kmod-nf-nathelper
  71. select PACKAGE_kmod-nf-nathelper-extra
  72. endmenu
  73. menu "Storage"
  74. depends on PACKAGE_docker-ce
  75. config DOCKER_STO_EXT4
  76. bool "Enables support for ext3 or ext4 as the backing filesystem"
  77. default n
  78. select KERNEL_EXT4_FS_POSIX_ACL
  79. config DOCKER_STO_BTRFS
  80. bool "Enables support for btrfs as the backing filesystem"
  81. default n
  82. select PACKAGE_kmod-fs-btrfs
  83. select KERNEL_BTRFS_FS_POSIX_ACL
  84. endmenu