mirror of
https://github.com/hercules-ci/arion.git
synced 2024-11-23 09:38:12 +03:00
compose service: add 'sysctls' option
This commit is contained in:
parent
e800372155
commit
6c7170c365
@ -174,6 +174,11 @@ in
|
||||
default = null;
|
||||
description = dockerComposeRef "stop_signal";
|
||||
};
|
||||
service.sysctls = mkOption {
|
||||
type = attrsOf (either str int);
|
||||
default = {};
|
||||
description = dockerComposeRef "sysctls";
|
||||
};
|
||||
service.capabilities = mkOption {
|
||||
type = attrsOf (nullOr bool);
|
||||
default = {};
|
||||
@ -198,6 +203,7 @@ in
|
||||
inherit (config.service)
|
||||
volumes
|
||||
environment
|
||||
sysctls
|
||||
image
|
||||
;
|
||||
} // lib.optionalAttrs (config.service.build.context != null) {
|
||||
|
Loading…
Reference in New Issue
Block a user