Docker Desktop: Difference between revisions

No edit summary
m there is no reason to include the '=' in the grep needle
Line 134: Line 134:


This feature is available only if Docker has been built with <code>seccomp</code> and the kernel is configured with <code>CONFIG_SECCOMP</code> enabled. To check if your kernel supports <code>seccomp</code>, grep through your boot configuration file such as <code>/boot/config-6.8.0-51-generic</code>
This feature is available only if Docker has been built with <code>seccomp</code> and the kernel is configured with <code>CONFIG_SECCOMP</code> enabled. To check if your kernel supports <code>seccomp</code>, grep through your boot configuration file such as <code>/boot/config-6.8.0-51-generic</code>
  <code>$ grep CONFIG_SECCOMP= /boot/config-$(uname -r)</code>
  <code>$ grep CONFIG_SECCOMP /boot/config-$(uname -r)</code>
(output should show CONFIG_SECCOMP=y)
(output should show CONFIG_SECCOMP=y)