the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

Unmount volumes before stopping sandbox

+7
+7
apps/cf-sandbox/src/index.ts
··· 390 390 if (!sandbox) { 391 391 return c.json({ error: "Sandbox provider not supported" }, 400); 392 392 } 393 + const volumes = await c.var.db 394 + .select() 395 + .from(sandboxVolumes) 396 + .where(eq(sandboxVolumes.sandboxId, c.req.param("sandboxId"))) 397 + .execute(); 398 + 399 + await Promise.all(volumes.map((volume) => sandbox?.unmount(volume.path))); 393 400 394 401 await sandbox.stop(); 395 402 await c.var.db