mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-29 10:50:58 +00:00
6 lines
213 B
TypeScript
6 lines
213 B
TypeScript
export function resolveDaemonContainerContext(
|
|
env: Record<string, string | undefined> = process.env,
|
|
): string | null {
|
|
return env.OPENCLAW_CONTAINER_HINT?.trim() || env.OPENCLAW_CONTAINER?.trim() || null;
|
|
}
|