2024-06-12 07:23:49 +02:00
|
|
|
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
|
|
|
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-outside-of-docker-compose
|
2024-06-13 18:44:11 +02:00
|
|
|
{
|
2024-10-09 15:12:36 -04:00
|
|
|
"name": "AutoGen devcontainer",
|
2024-06-12 07:23:49 +02:00
|
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
|
|
|
"service": "devcontainer",
|
|
|
|
|
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
|
|
|
|
|
|
|
|
|
|
// Use this environment variable if you need to bind mount your local source code into a new container.
|
|
|
|
|
"remoteEnv": {
|
|
|
|
|
"LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}"
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"features": {
|
|
|
|
|
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {
|
|
|
|
|
"moby": true,
|
|
|
|
|
"installDockerBuildx": true,
|
|
|
|
|
"version": "latest",
|
|
|
|
|
"dockerDashComposeVersion": "none"
|
|
|
|
|
},
|
2024-07-08 20:22:01 +02:00
|
|
|
"ghcr.io/elanhasson/devcontainer-features/dotnet-aspire-daily:1": {},
|
2024-07-19 13:57:13 -07:00
|
|
|
"ghcr.io/devcontainers/features/azure-cli:1": {},
|
2024-10-01 20:35:37 +02:00
|
|
|
"ghcr.io/azure/azure-dev/azd:0": {}
|
2024-06-12 07:23:49 +02:00
|
|
|
},
|
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
|
|
|
// "forwardPorts": [],
|
|
|
|
|
|
|
|
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
|
|
|
"postCreateCommand": "bash .devcontainer/startup.sh",
|
|
|
|
|
|
|
|
|
|
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
|
|
|
|
"remoteUser": "root",
|
|
|
|
|
"customizations": {
|
|
|
|
|
"vscode": {
|
|
|
|
|
"extensions": [
|
|
|
|
|
"ms-python.python",
|
2024-06-28 19:15:53 -04:00
|
|
|
"ms-python.debugpy",
|
2024-07-08 20:22:01 +02:00
|
|
|
"GitHub.copilot",
|
|
|
|
|
"ms-dotnettools.csdevkit",
|
2024-07-18 11:00:09 -07:00
|
|
|
"ms-dotnettools.vscodeintellicode-csharp",
|
|
|
|
|
"github.vscode-github-actions"
|
2024-06-12 07:23:49 +02:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-09-30 10:15:34 -04:00
|
|
|
}
|