IoT-Simulator/.devcontainer/devcontainer.json

26 lines
426 B
JSON
Raw Normal View History

2024-11-12 10:17:37 +00:00
{
// Displayed name
"name": "IoT-Simulator",
// Image to be used
"image": "swift",
// Env in container
"containerEnv": {
},
// Mounts in container
"mounts": [
{
"source": "${localWorkspaceFolder}",
"target": "/workspace",
"type": "bind"
}
],
// The WorkspaceFolder inside container
"workspaceFolder": "/workspace"
}