IoT-Simulator/.devcontainer/devcontainer.json
Christian Risi c2539d2250 Initial Commit
It should work for everyone
2024-11-12 11:33:37 +00:00

32 lines
514 B
JSON

{
// 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",
// RunArgs
"runArgs": [
"--name",
"IoT-Simulator-Vapor"
]
}