29 lines
1010 B
JSON
29 lines
1010 B
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.183.0/containers/ubuntu
|
|
{
|
|
"name": "ESP-IDF QEMU",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
"extensions": [
|
|
"ms-vscode.cpptools",
|
|
"espressif.esp-idf-extension"
|
|
],
|
|
"workspaceMount": "source=${localWorkspaceFolder},target=/workspaces,type=bind",
|
|
/* the path of workspace folder to be opened after container is running
|
|
*/
|
|
"workspaceFolder": "/workspaces",
|
|
"mounts": [
|
|
"source=extensionCache,target=/root/.vscode-server/extensions,type=volume"
|
|
],
|
|
"settings": {
|
|
"terminal.integrated.defaultProfile.linux": "bash",
|
|
"idf.espIdfPath": "/opt/esp/idf",
|
|
"idf.customExtraPaths": "",
|
|
"idf.pythonBinPath": "/opt/esp/python_env/idf5.1_py3.8_env/bin/python",
|
|
"idf.toolsPath": "/opt/esp",
|
|
"idf.gitPath": "/usr/bin/git"
|
|
},
|
|
"runArgs": ["--privileged"]
|
|
} |