fixed some stuff

This commit is contained in:
2025-03-19 20:54:23 +02:00
parent 32d64f3637
commit 5f01b6b27c
5 changed files with 29 additions and 9 deletions

View File

@@ -50,10 +50,18 @@ type AuthenticationConfig struct {
UserPass UserPassAuthConfig `yaml:"user_pass"`
}
type DockerReverseProxyConfig struct {
Middlewares []string `yaml:"middlewares"`
Entrypoint string `yaml:"entrypoint"`
Tls bool `yaml:"tls"`
TlsResolver string `yaml:"tls_resolver"`
}
type FileBrowserConfig struct {
Image Image `yaml:"image"`
Command string `yaml:"command"`
Network string `yaml:"network"`
Image Image `yaml:"image"`
Command string `yaml:"command"`
Network string `yaml:"network"`
ReverseProxy DockerReverseProxyConfig `yaml:"reverse_proxy"`
}
type DockerInstanceManagerConfig struct {