asterinas/.devcontainer/devcontainer.json

16 lines
554 B
JSON

{
"name": "Asterinas Dev Container",
"image": "asterinas/asterinas:0.18.0-20260603",
// Mount the workspace and the `/dev` directory
"workspaceFolder": "/root/asterinas",
"workspaceMount": "source=${localWorkspaceFolder},target=/root/asterinas,type=bind",
"mounts": ["source=/dev,target=/dev,type=bind"],
// Run with privileged mode and host networking
"privileged": true,
"runArgs": ["--network=host"],
// Enable extensions for Rust development
"customizations": {
"vscode": { "extensions": ["rust-lang.rust-analyzer"] }
}
}