fix: make docker container name optional

This commit is contained in:
Aarnav Tale 2025-04-25 14:02:21 -04:00
parent 48ec492209
commit 8263506713
No known key found for this signature in database

View File

@ -62,7 +62,7 @@ const agentConfig = type({
const dockerConfig = type({
enabled: stringToBool,
container_name: 'string',
container_name: 'string = ""',
socket: 'string = "unix:///var/run/docker.sock"',
container_label: containerLabel,
});