feat: docker-compose fields -> networks -> add

This commit is contained in:
Serhii Khoma 2019-09-18 19:34:26 +03:00
parent 2d079e4f41
commit 0f85d7b03c

View file

@ -174,6 +174,11 @@ in
default = null;
description = dockerComposeRef "network_mode";
};
service.networks = mkOption {
type = nullOr (listOf types.str);
default = null;
description = dockerComposeRef "networks";
};
service.stop_signal = mkOption {
type = nullOr str;
default = null;
@ -245,6 +250,8 @@ in
inherit (config.service) privileged;
} // lib.optionalAttrs (config.service.network_mode != null) {
inherit (config.service) network_mode;
} // lib.optionalAttrs (config.service.networks != null) {
inherit (config.service) networks;
} // lib.optionalAttrs (config.service.restart != null) {
inherit (config.service) restart;
} // lib.optionalAttrs (config.service.stop_signal != null) {