Update container IPC socket path in default configuration

- Change the ContainerIPCSocket path from "/tmp/yao.sock" to "/run/yao.sock" to align with system conventions for IPC sockets.

This change improves the configuration's compatibility with standard practices for inter-process communication.
This commit is contained in:
Max 2026-02-08 22:12:31 +08:00
parent ac926b4233
commit 6f50cf139a

View file

@ -35,7 +35,7 @@ func DefaultConfig() *Config {
MaxMemory: "2g",
MaxCPU: 1.0,
ContainerWorkDir: "/workspace",
ContainerIPCSocket: "/tmp/yao.sock",
ContainerIPCSocket: "/run/yao.sock",
}
}