Merge pull request #11 from srghma/master
feat: docker-config -> add missing fields
This commit is contained in:
commit
93346145cd
1 changed files with 14 additions and 3 deletions
|
@ -2,8 +2,7 @@
|
|||
|
||||
let
|
||||
inherit (lib) mkOption types;
|
||||
inherit (types) listOf nullOr attrsOf string either;
|
||||
|
||||
inherit (types) listOf nullOr attrsOf string either int;
|
||||
in
|
||||
{
|
||||
options = {
|
||||
|
@ -16,7 +15,7 @@ in
|
|||
default = null;
|
||||
};
|
||||
service.environment = mkOption {
|
||||
type = attrsOf string;
|
||||
type = attrsOf (either string int);
|
||||
default = {};
|
||||
};
|
||||
service.image = mkOption {
|
||||
|
@ -30,6 +29,14 @@ in
|
|||
type = listOf string;
|
||||
default = [];
|
||||
};
|
||||
service.working_dir = mkOption {
|
||||
type = nullOr string;
|
||||
default = null;
|
||||
};
|
||||
service.entrypoint = mkOption {
|
||||
type = nullOr string;
|
||||
default = null;
|
||||
};
|
||||
service.restart = mkOption {
|
||||
type = nullOr string;
|
||||
default = null;
|
||||
|
@ -66,6 +73,10 @@ in
|
|||
inherit (config.service) depends_on;
|
||||
} // lib.optionalAttrs (config.service.restart != null) {
|
||||
inherit (config.service) restart;
|
||||
} // lib.optionalAttrs (config.service.working_dir != null) {
|
||||
inherit (config.service) working_dir;
|
||||
} // lib.optionalAttrs (config.service.entrypoint != null) {
|
||||
inherit (config.service) entrypoint;
|
||||
} // lib.optionalAttrs (config.service.ports != []) {
|
||||
inherit (config.service) ports;
|
||||
} // lib.optionalAttrs (config.service.expose != []) {
|
||||
|
|
Loading…
Reference in a new issue