grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / misc / docker-registry.nix
blob99d5e3e1804a94d750c44fc6215490f42e05b141
1 { config, lib, pkgs, ... }:
2 let
3   cfg = config.services.dockerRegistry;
5   blobCache = if cfg.enableRedisCache
6     then "redis"
7     else "inmemory";
9   registryConfig = {
10     version =  "0.1";
11     log.fields.service = "registry";
12     storage = {
13       cache.blobdescriptor = blobCache;
14       delete.enabled = cfg.enableDelete;
15     } // (lib.optionalAttrs (cfg.storagePath != null) { filesystem.rootdirectory = cfg.storagePath; });
16     http = {
17       addr = "${cfg.listenAddress}:${builtins.toString cfg.port}";
18       headers.X-Content-Type-Options = ["nosniff"];
19     };
20     health.storagedriver = {
21       enabled = true;
22       interval = "10s";
23       threshold = 3;
24     };
25   };
27   registryConfig.redis = lib.mkIf cfg.enableRedisCache {
28     addr = "${cfg.redisUrl}";
29     password = "${cfg.redisPassword}";
30     db = 0;
31     dialtimeout = "10ms";
32     readtimeout = "10ms";
33     writetimeout = "10ms";
34     pool = {
35       maxidle = 16;
36       maxactive = 64;
37       idletimeout = "300s";
38     };
39   };
41   configFile = cfg.configFile;
42 in {
43   options.services.dockerRegistry = {
44     enable = lib.mkEnableOption "Docker Registry";
46     package = lib.mkPackageOption pkgs "docker-distribution" {
47       example = "gitlab-container-registry";
48     };
50     listenAddress = lib.mkOption {
51       description = "Docker registry host or ip to bind to.";
52       default = "127.0.0.1";
53       type = lib.types.str;
54     };
56     port = lib.mkOption {
57       description = "Docker registry port to bind to.";
58       default = 5000;
59       type = lib.types.port;
60     };
62     openFirewall = lib.mkOption {
63       type = lib.types.bool;
64       default = false;
65       description = "Opens the port used by the firewall.";
66     };
68     storagePath = lib.mkOption {
69       type = lib.types.nullOr lib.types.path;
70       default = "/var/lib/docker-registry";
71       description = ''
72         Docker registry storage path for the filesystem storage backend. Set to
73         null to configure another backend via extraConfig.
74       '';
75     };
77     enableDelete = lib.mkOption {
78       type = lib.types.bool;
79       default = false;
80       description = "Enable delete for manifests and blobs.";
81     };
83     enableRedisCache = lib.mkEnableOption "redis as blob cache";
85     redisUrl = lib.mkOption {
86       type = lib.types.str;
87       default = "localhost:6379";
88       description = "Set redis host and port.";
89     };
91     redisPassword = lib.mkOption {
92       type = lib.types.str;
93       default = "";
94       description = "Set redis password.";
95     };
97     extraConfig = lib.mkOption {
98       description = ''
99         Docker extra registry configuration via environment variables.
100       '';
101       default = {};
102       type = lib.types.attrs;
103     };
105     configFile = lib.mkOption {
106       default = pkgs.writeText "docker-registry-config.yml" (builtins.toJSON (lib.recursiveUpdate registryConfig cfg.extraConfig));
107       defaultText = lib.literalExpression ''pkgs.writeText "docker-registry-config.yml" "# my custom docker-registry-config.yml ..."'';
108       description = ''
109        Path to CNCF distribution config file.
111        Setting this option will override any configuration applied by the extraConfig option.
112       '';
113       type =  lib.types.path;
114     };
116     enableGarbageCollect = lib.mkEnableOption "garbage collect";
118     garbageCollectDates = lib.mkOption {
119       default = "daily";
120       type = lib.types.str;
121       description = ''
122         Specification (in the format described by
123         {manpage}`systemd.time(7)`) of the time at
124         which the garbage collect will occur.
125       '';
126     };
127   };
129   config = lib.mkIf cfg.enable {
130     systemd.services.docker-registry = {
131       description = "Docker Container Registry";
132       wantedBy = [ "multi-user.target" ];
133       after = [ "network.target" ];
134       script = ''
135         ${cfg.package}/bin/registry serve ${configFile}
136       '';
138       serviceConfig = {
139         User = "docker-registry";
140         WorkingDirectory = cfg.storagePath;
141         AmbientCapabilities = lib.mkIf (cfg.port < 1024) "cap_net_bind_service";
142       };
143     };
145     systemd.services.docker-registry-garbage-collect = {
146       description = "Run Garbage Collection for docker registry";
148       restartIfChanged = false;
149       unitConfig.X-StopOnRemoval = false;
151       serviceConfig.Type = "oneshot";
153       script = ''
154         ${cfg.package}/bin/registry garbage-collect ${configFile}
155         /run/current-system/systemd/bin/systemctl restart docker-registry.service
156       '';
158       startAt = lib.optional cfg.enableGarbageCollect cfg.garbageCollectDates;
159     };
161     users.users.docker-registry =
162       (lib.optionalAttrs (cfg.storagePath != null) {
163         createHome = true;
164         home = cfg.storagePath;
165       }) // {
166         group = "docker-registry";
167         isSystemUser = true;
168       };
169     users.groups.docker-registry = {};
171     networking.firewall = lib.mkIf cfg.openFirewall {
172       allowedTCPPorts = [ cfg.port ];
173     };
174   };