assistance-engine/.devcontainer/devcontainer.json

30 lines
668 B
JSON

{
"name": "brunix-assistance-engine",
"build": {
"dockerfile": "Dockerfile",
"dockerComposeFile": "docker-compose.yaml",
"context": "../"
},
"runArgs": [
"-p",
"50052:50051",
"--env-file",
".devcontainer/devcontainer.env",
"--add-host",
"host.docker.internal:host-gateway"
],
"customizations": {
"vscode": {
"extensions": [
"quarto.quarto",
"ms-azuretools.vscode-docker",
"ms-python.python",
"ms-vscode-remote.remote-containers",
"yzhang.markdown-all-in-one",
"redhat.vscode-yaml",
"ms-toolsai.jupyter",
"hediet.vscode-drawio"
]
}
}
}