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

173 lines
5.2 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;
2019-03-04 00:12:01 +01:00
inherit (types) listOf nullOr attrsOf str 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 = {
2019-03-04 00:13:57 +01:00
build.service = mkOption {
type = attrsOf types.unspecified;
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.
'';
};
service.volumes = mkOption {
type = listOf types.unspecified;
default = [];
2019-03-03 23:42:40 +01:00
description = "";
};
service.build.context = mkOption {
2019-03-04 00:12:01 +01:00
type = nullOr str;
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 {
2019-03-04 00:12:01 +01:00
type = nullOr str;
default = null;
2019-03-03 23:42:40 +01:00
description = dockerComposeKitchenSink;
};
service.environment = mkOption {
2019-03-04 00:12:01 +01:00
type = attrsOf (either str int);
default = {};
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "environment";
};
service.image = mkOption {
2019-03-04 00:12:01 +01:00
type = str;
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 {
2019-03-04 00:12:01 +01:00
type = listOf str;
default = [];
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "depends_on";
};
service.links = mkOption {
2019-03-04 00:12:01 +01:00
type = listOf str;
default = [];
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "links";
};
service.external_links = mkOption {
2019-03-04 00:12:01 +01:00
type = listOf str;
default = [];
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "external_links";
};
service.extra_hosts = mkOption {
2019-03-04 00:12:01 +01:00
type = listOf str;
default = [];
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "extra_hosts";
};
service.working_dir = mkOption {
2019-03-04 00:12:01 +01:00
type = nullOr str;
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 {
2019-03-04 00:12:01 +01:00
type = nullOr str;
default = null;
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "entrypoint";
};
service.restart = mkOption {
2019-03-04 00:12:01 +01:00
type = nullOr str;
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 {
2019-03-04 00:12:01 +01:00
type = listOf str;
default = [];
2019-03-03 23:42:40 +01:00
description = dockerComposeRef "expose";
};
service.env_file = mkOption {
type = listOf str;
default = [];
description = dockerComposeRef "env_file";
};
service.network_mode = mkOption {
type = nullOr str;
default = null;
description = dockerComposeRef "network_mode";
};
};
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.entrypoint != null) {
inherit (config.service) entrypoint;
} // lib.optionalAttrs (config.service.env_file != []) {
inherit (config.service) env_file;
} // lib.optionalAttrs (config.service.expose != []) {
inherit (config.service) expose;
} // lib.optionalAttrs (config.service.external_links != []) {
inherit (config.service) external_links;
} // lib.optionalAttrs (config.service.extra_hosts != []) {
inherit (config.service) extra_hosts;
} // lib.optionalAttrs (config.service.hostname != null) {
inherit (config.service) hostname;
} // lib.optionalAttrs (config.service.links != []) {
inherit (config.service) links;
} // lib.optionalAttrs (config.service.ports != []) {
inherit (config.service) ports;
} // lib.optionalAttrs (config.service.privileged != null) {
inherit (config.service) privileged;
} // lib.optionalAttrs (config.service.network_mode != null) {
inherit (config.service) network_mode;
} // lib.optionalAttrs (config.service.restart != null) {
inherit (config.service) restart;
} // lib.optionalAttrs (config.service.working_dir != null) {
inherit (config.service) working_dir;
};
}