devcontainer.json681 B
View on GitHub{
"name": "Geodesic with Atmos",
"build": {
"dockerfile": "Dockerfile",
"context": ".",
"args": {
"GEODESIC_VERSION": "latest"
}
},
"workspaceFolder": "/workspace",
"workspaceMount": "type=bind,source=${localWorkspaceFolder},target=/workspace",
"forwardPorts": [8080, 3000],
"portsAttributes": {
"8080": {
"label": "Web Server",
"protocol": "http"
},
"3000": {
"label": "Development Server",
"protocol": "http"
}
},
"containerEnv": {
"ATMOS_BASE_PATH": "/workspace"
},
"remoteUser": "root",
"runArgs": [
"--hostname=geodesic-atmos"
],
"userEnvProbe": "loginInteractiveShell"
}