ref #8: [feat] add config for docker daemon

This commit is contained in:
Azamat 2026-04-02 14:09:41 +03:00
parent d2506e0c63
commit 3a7973accd
4 changed files with 21 additions and 1 deletions

View file

@ -40,6 +40,11 @@ class OtelConfig:
metric_export_interval: int
@dataclass(frozen=True, slots=True)
class DockerConfig:
base_url: str
@dataclass(frozen=True, slots=True)
class SandboxConfig:
image: str
@ -68,5 +73,6 @@ class AppConfig:
metrics: MetricsConfig
tracing: TracingConfig
otel: OtelConfig
docker: DockerConfig
sandbox: SandboxConfig
security: SecurityConfig