feat: docker-config -> add missing fields -> links, external_links, extra_hosts
This commit is contained in:
parent
20651e8739
commit
57d5370e76
1 changed files with 12 additions and 0 deletions
|
@ -39,6 +39,18 @@ in
|
||||||
type = listOf string;
|
type = listOf string;
|
||||||
default = [];
|
default = [];
|
||||||
};
|
};
|
||||||
|
service.links = mkOption {
|
||||||
|
type = listOf string;
|
||||||
|
default = [];
|
||||||
|
};
|
||||||
|
service.external_links = mkOption {
|
||||||
|
type = listOf string;
|
||||||
|
default = [];
|
||||||
|
};
|
||||||
|
service.extra_hosts = mkOption {
|
||||||
|
type = listOf string;
|
||||||
|
default = [];
|
||||||
|
};
|
||||||
service.working_dir = mkOption {
|
service.working_dir = mkOption {
|
||||||
type = nullOr string;
|
type = nullOr string;
|
||||||
default = null;
|
default = null;
|
||||||
|
|
Loading…
Reference in a new issue