arion/src/nix/modules/service/docker-compose-service.nix

149 lines
4.3 KiB
Nix
Raw Normal View History

/*
This service-level module defines the build.service option, using
the user-facing options service.image, service.volumes, etc.
*/
{ pkgs, lib, config, ... }:
let
inherit (lib) mkOption types;
inherit (types) listOf nullOr attrsOf string either int bool;
2019-03-03 23:42:40 +01:00
dockerComposeRef = fragment:
''See <link xlink:href="https://docs.docker.com/compose/compose-file/#${fragment}">Docker Compose#${fragment}</link>'';
dockerComposeKitchenSink = ''
Analogous to the <code>docker run</code> counterpart.
${dockerComposeRef "domainname-hostname-ipc-mac_address-privileged-read_only-shm_size-stdin_open-tty-user-working_dir"}
'';
in
{
options = {
service.volumes = mkOption {
type = listOf types.unspecified;
default = [];
2019-03-03 23:42:40 +01:00
description = "";
};
service.build.context = mkOption {
type = nullOr string;
default = null;
2019-03-03 23:42:40 +01:00
description = ''
Locates a Dockerfile to use for creating an image to use in this service.
${dockerComposeRef "context"}
'';
};
service.hostname = mkOption {
type = nullOr string;
default = null;
2019-03-03 23:42:40 +01:00
description = dockerComposeKitchenSink;
};
service.environment = mkOption {
type = attrsOf (either string int);
default = {};
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "environment";
};
service.image = mkOption {
type = string;
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "image";
};
service.command = mkOption {
type = nullOr types.unspecified;
default = null;
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "command";
};
service.depends_on = mkOption {
type = listOf string;
default = [];
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "depends_on";
};
service.links = mkOption {
type = listOf string;
default = [];
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "links";
};
service.external_links = mkOption {
type = listOf string;
default = [];
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "external_links";
};
service.extra_hosts = mkOption {
type = listOf string;
default = [];
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "extra_hosts";
};
service.working_dir = mkOption {
type = nullOr string;
default = null;
2019-03-03 23:42:40 +01:00
description = dockerComposeKitchenSink;
};
service.privileged = mkOption {
type = nullOr bool;
default = null;
2019-03-03 23:42:40 +01:00
description = dockerComposeKitchenSink;
};
service.entrypoint = mkOption {
type = nullOr string;
default = null;
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "entrypoint";
};
service.restart = mkOption {
type = nullOr string;
default = null;
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "restart";
};
service.ports = mkOption {
type = listOf types.unspecified;
default = [];
description = ''
Expose ports on host. "host:container" or structured.
2019-03-03 23:42:40 +01:00
${dockerComposeRef "ports"}
'';
};
service.expose = mkOption {
type = listOf string;
default = [];
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "expose";
};
build.service = mkOption {
type = attrsOf types.unspecified;
2019-03-03 23:42:40 +01:00
description = ''
Raw input for the service in <code>docker-compose.yaml</code>.
You should not need to use this option. If anything is
missing, please contribute the missing option.
This option is user accessible because it may serve as an
escape hatch for some.
'';
};
};
config.build.service = {
inherit (config.service)
volumes
environment
image
;
} // lib.optionalAttrs (config.service.build.context != null) {
inherit (config.service) build;
} // lib.optionalAttrs (config.service.command != null) {
inherit (config.service) command;
} // lib.optionalAttrs (config.service.depends_on != []) {
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 != []) {
inherit (config.service) expose;
};
}