43 lines
1.6 KiB
JSON
43 lines
1.6 KiB
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
// README at: https://github.com/devcontainers/templates/tree/main/src/rust
|
|
{
|
|
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
|
// "image": "mcr.microsoft.com/devcontainers/rust:0-1-bullseye",
|
|
// Use docker compose file
|
|
"dockerComposeFile": ["docker-compose.yaml", "docker-compose-k3s.yaml"],
|
|
"service": "devcontainer",
|
|
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
|
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
|
// "features": {},
|
|
// Configure tool-specific properties.
|
|
"customizations": {
|
|
// Configure properties specific to VS Code.
|
|
"vscode": {
|
|
"settings": {"terminal.integrated.defaultProfile.linux": "bash"},
|
|
"extensions": [
|
|
// VS Code specific
|
|
"ms-azuretools.vscode-docker",
|
|
"dbaeumer.vscode-eslint",
|
|
"j-brooke.fracturedjsonvsc",
|
|
// Python specific
|
|
"ms-python.python",
|
|
"charliermarsh.ruff",
|
|
// Markdown specific
|
|
"yzhang.markdown-all-in-one",
|
|
// YAML formatter
|
|
"kennylong.kubernetes-yaml-formatter",
|
|
// hightlight and format `pyproject.toml`
|
|
"tamasfe.even-better-toml"
|
|
]
|
|
}
|
|
},
|
|
"mounts": [],
|
|
// "runArgs": [
|
|
// "--env-file",
|
|
// ".devcontainer/.env"
|
|
// ],
|
|
"postStartCommand": "/workspaces/${localWorkspaceFolderBasename}/.devcontainer/initscript.sh",
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
"forwardPorts": []
|
|
}
|