Try adding BPF capability for credential-in-container support
This commit is contained in:
+4
-1
@@ -25,7 +25,10 @@ let
|
|||||||
];
|
];
|
||||||
ports = [ "${toString cfg.port}:80" ];
|
ports = [ "${toString cfg.port}:80" ];
|
||||||
networks = [ "external_network" ];
|
networks = [ "external_network" ];
|
||||||
capabilities.SYS_ADMIN = true;
|
capabilities = {
|
||||||
|
BPF = true;
|
||||||
|
SYS_ADMIN = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
nixos = {
|
nixos = {
|
||||||
useSystemd = true;
|
useSystemd = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user