mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
593dc45141
The following changes have been applied: - the property `http.headers.X-Content-Type-Options` must a list of strings rather than a serialized list - instead of `/etc/docker/registry/config.yml` the configuration will be written with `pkgs.writeText` and the store path will be used to run the registry. This reduces the risk of possible impurities by relying on the Nix store only. - cleaned up the property paths to easy readability and reduce the verbosity. - enhanced the testcase to ensure that digests can be deleted as well - the `services.docker-registry.extraConfig` object will be merged with `registryConfig` /cc @ironpinguin
123 lines
2.8 KiB
Nix
123 lines
2.8 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.dockerRegistry;
|
|
|
|
blobCache = if cfg.enableRedisCache
|
|
then "redis"
|
|
else "inmemory";
|
|
|
|
registryConfig = {
|
|
version = "0.1";
|
|
log.fields.service = "registry";
|
|
storage = {
|
|
cache.blobdescriptor = blobCache;
|
|
filesystem.rootdirectory = cfg.storagePath;
|
|
delete.enabled = cfg.enableDelete;
|
|
};
|
|
http = {
|
|
addr = ":${builtins.toString cfg.port}";
|
|
headers.X-Content-Type-Options = ["nosniff"];
|
|
};
|
|
health.storagedriver = {
|
|
enabled = true;
|
|
interval = "10s";
|
|
threshold = 3;
|
|
};
|
|
};
|
|
|
|
registryConfig.redis = mkIf cfg.enableRedisCache {
|
|
addr = "${cfg.redisUrl}";
|
|
password = "${cfg.redisPassword}";
|
|
db = 0;
|
|
dialtimeout = "10ms";
|
|
readtimeout = "10ms";
|
|
writetimeout = "10ms";
|
|
pool = {
|
|
maxidle = 16;
|
|
maxactive = 64;
|
|
idletimeout = "300s";
|
|
};
|
|
};
|
|
|
|
in {
|
|
options.services.dockerRegistry = {
|
|
enable = mkEnableOption "Docker Registry";
|
|
|
|
listenAddress = mkOption {
|
|
description = "Docker registry host or ip to bind to.";
|
|
default = "127.0.0.1";
|
|
type = types.str;
|
|
};
|
|
|
|
port = mkOption {
|
|
description = "Docker registry port to bind to.";
|
|
default = 5000;
|
|
type = types.int;
|
|
};
|
|
|
|
storagePath = mkOption {
|
|
type = types.path;
|
|
default = "/var/lib/docker-registry";
|
|
description = "Docker registry storage path.";
|
|
};
|
|
|
|
enableDelete = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = "Enable delete for manifests and blobs.";
|
|
};
|
|
|
|
enableRedisCache = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = "Enable redis as blob cache instade of inmemory.";
|
|
};
|
|
|
|
redisUrl = mkOption {
|
|
type = types.str;
|
|
default = "localhost:6379";
|
|
description = "Set redis host and port.";
|
|
};
|
|
|
|
redisPassword = mkOption {
|
|
type = types.str;
|
|
default = "";
|
|
description = "Set redis password.";
|
|
};
|
|
|
|
extraConfig = mkOption {
|
|
description = ''
|
|
Docker extra registry configuration via environment variables.
|
|
'';
|
|
default = {};
|
|
type = types.attrsOf types.str;
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.docker-registry = {
|
|
description = "Docker Container Registry";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
script = let
|
|
configFile = pkgs.writeText "docker-registry-config.yml" (builtins.toJSON (registryConfig // cfg.extraConfig));
|
|
in ''
|
|
${pkgs.docker-distribution}/bin/registry serve ${configFile}
|
|
'';
|
|
|
|
serviceConfig = {
|
|
User = "docker-registry";
|
|
WorkingDirectory = cfg.storagePath;
|
|
};
|
|
};
|
|
|
|
users.extraUsers.docker-registry = {
|
|
createHome = true;
|
|
home = cfg.storagePath;
|
|
};
|
|
};
|
|
}
|