Initial Commit

This commit is contained in:
Christian Risi
2024-11-29 15:08:51 +01:00
parent 6ce48a4e84
commit bb0472911b
6 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
{
// Displayed name
"name": "IoT-Simulator-Core",
// Image to be used
"image": "swift",
// Customization
"customizations": {
"vscode": {
"extensions": [
"sswg.swift-lang"
]
}
},
// 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-Core"
]
}