Merge pull request #11353 from kvuorine/fwknop-fixes
[feed/packages.git] / utils / docker-ce / Config.in
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
20 config DOCKER_SECCOMP
21 bool "Enable support for seccomp in Docker"
22 depends on PACKAGE_docker-ce
23 default n
24 select KERNEL_SECCOMP
25 select PACKAGE_libseccomp
26 help
27 Build Docker with support for seccomp filters.
28 Select libseccomp which also pulls-in the needed kernel features.
29
30 config DOCKER_RES_SHAPE
31 bool "Enables support for resource shaping"
32 depends on PACKAGE_docker-ce
33 default n
34 select KERNEL_MEMCG_SWAP
35 select KERNEL_MEMCG_SWAP_ENABLED
36 select KERNEL_BLK_DEV_THROTTLING
37 select KERNEL_CFQ_GROUP_IOSCHED
38 select KERNEL_CGROUP_PERF
39 select KERNEL_CGROUP_HUGETLB
40 select KERNEL_FAIR_GROUP_SCHED
41 select KERNEL_NET_CLS_CGROUP
42 select KERNEL_CGROUP_NET_CLASSID
43 select KERNEL_CGROUP_NET_PRIO
44 select KERNEL_CFS_BANDWIDTH
45 select KERNEL_RT_GROUP_SCHED
46
47 menu "Network"
48 depends on PACKAGE_docker-ce
49
50 config DOCKER_NET_OVERLAY
51 bool "Enables the Overlay network feature"
52 default n
53 select PACKAGE_kmod-udptunnel4
54 help
55 Selects kernel options for the Overlay network feature.
56 Includes udptunnel4
57
58 config DOCKER_NET_ENCRYPT
59 bool "Enable encrypted networking kernel support"
60 depends on DOCKER_NET_OVERLAY
61 default n
62 select PACKAGE_kmod-ipsec
63 select PACKAGE_kmod-ipsec4
64 select PACKAGE_kmod-crypto-gcm
65 select PACKAGE_kmod-crypto-ghash
66 help
67 Select needed kernel options for encrypted networking support.
68
69 config DOCKER_NET_MACVLAN
70 bool "Enables macvlan kernel support"
71 default n
72 select PACKAGE_kmod-macvlan
73 select PACKAGE_kmod-dummy
74
75 config DOCKER_NET_TFTP
76 bool "Enable ftp/tftp client kernel support"
77 default n
78 select PACKAGE_kmod-nf-nathelper
79 select PACKAGE_kmod-nf-nathelper-extra
80 endmenu
81
82 menu "Storage"
83 depends on PACKAGE_docker-ce
84
85 config DOCKER_STO_EXT4
86 bool "Enables support for ext3 or ext4 as the backing filesystem"
87 default n
88 select KERNEL_EXT4_FS_POSIX_ACL
89
90 config DOCKER_STO_BTRFS
91 bool "Enables support for btrfs as the backing filesystem"
92 default n
93 select PACKAGE_kmod-fs-btrfs
94 select KERNEL_BTRFS_FS_POSIX_ACL
95 endmenu