domotic/.devcontainer/devcontainer.json
2025-05-21 14:16:28 +00:00

33 lines
857 B
JSON

{
"name": "ESP-IDF QEMU",
"build": {
"dockerfile": "Dockerfile",
"args": {
"HTTPS_PROXY":"http://proxy-web.service.cnp.cs.recouv:3128",
"HTTP_PROXY":"http://proxy-web.service.cnp.cs.recouv:3128",
}
},
"remoteEnv": {
"HTTPS_PROXY":"http://proxy-web.service.cnp.cs.recouv:3128",
"HTTP_PROXY":"http://proxy-web.service.cnp.cs.recouv:3128",
},
"containerEnv": {
"HTTPS_PROXY":"http://proxy-web.service.cnp.cs.recouv:3128",
"HTTP_PROXY":"http://proxy-web.service.cnp.cs.recouv:3128",
},
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"idf.espIdfPath": "/opt/esp/idf",
"idf.toolsPath": "/opt/esp",
"idf.gitPath": "/usr/bin/git"
},
"extensions": [
"espressif.esp-idf-extension",
"espressif.esp-idf-web"
]
}
},
"runArgs": ["--privileged"]
}