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.

90 lines
2.4 KiB

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