Implemented support for authentication dependent docker registries

This commit is contained in:
2025-04-15 14:16:02 +02:00
parent 144d9141c9
commit 0bca85d775
2 changed files with 51 additions and 5 deletions

View File

@@ -18,6 +18,15 @@ public class AppConfiguration
public class DockerData
{
public string Uri { get; set; } = "unix:///var/run/docker.sock";
public DockerCredentialData[] Credentials { get; set; } = [];
public class DockerCredentialData
{
public string Domain { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public string Email { get; set; }
}
}
public class SecurityData