doc/misc/docker-registry: fix extraConfig docs (#349495)

This commit is contained in:
Sandro
2024-10-22 21:06:38 +02:00
committed by GitHub

View File

@@ -96,7 +96,12 @@ in {
extraConfig = lib.mkOption {
description = ''
Docker extra registry configuration via environment variables.
Docker extra registry configuration.
'';
example = lib.literalExpression ''
{
log.level = "debug";
}
'';
default = {};
type = lib.types.attrs;