Define Solr image

This commit is contained in:
niten 2023-10-10 18:04:56 -07:00
parent d2c164784f
commit 7b77d833f6
1 changed files with 12 additions and 4 deletions

View File

@ -144,10 +144,18 @@ in {
}; };
}; };
images.ldap-proxy = mkOption { images = {
type = str; ldap-proxy = mkOption {
description = "Docker image to use for LDAP proxy."; type = str;
default = "ghcr.io/goauthentik/ldap"; description = "Docker image to use for LDAP proxy.";
default = "ghcr.io/goauthentik/ldap";
};
solr = mkOption {
type = str;
description = "Docker image to use for Solr full-text search.";
default = "ghcr.io/goauthentik/ldap";
};
}; };
smtp = { smtp = {