36 строки
1.1 KiB
JSON
36 строки
1.1 KiB
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/docker-from-docker-compose
|
|
{
|
|
"name": "Fhir-Cosmos-DevContainer",
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
"service": "fhir",
|
|
"workspaceFolder": "/workspace",
|
|
|
|
// Use this environment variable if you need to bind mount your local source code into a new container.
|
|
"remoteEnv": {
|
|
"LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}"
|
|
},
|
|
|
|
// Set *default* container specific settings.json values on container create.
|
|
"settings": {},
|
|
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
"extensions": [
|
|
"ms-azuretools.vscode-docker",
|
|
"ms-dotnettools.csharp",
|
|
"ms-azuretools.vscode-cosmosdb",
|
|
"humao.rest-client"
|
|
],
|
|
|
|
// Install the certificate for the emulator
|
|
"postCreateCommand": "/setup/fix-cert.sh",
|
|
|
|
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
|
"remoteUser": "vscode",
|
|
|
|
"portsAttributes": {
|
|
"44348": {
|
|
"protocol": "https"
|
|
}
|
|
}
|
|
} |