Files
devcontainers/.devcontainer/devops-dev/devcontainer.json
Márcio Fernandes 78b7208f42
All checks were successful
/ build-docker-image (push) Successful in 1m48s
added devops devcontainer and image
2025-11-19 00:24:08 +00:00

28 lines
656 B
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/ubuntu
{
"build": {
"dockerfile": "Dockerfile",
"context": "."
},
"remoteUser": "vscode",
"name": "devops",
"runArgs": [
"--hostname=devops"
],
"customizations": {
"vscode": {
"extensions": [
"ms-kubernetes-tools.vscode-kubernetes-tools",
"redhat.ansible",
"mtxr.sqltools-driver-mysql",
"stateful.runme",
"yzhang.markdown-all-in-one",
"davidanson.vscode-markdownlint",
"eamodio.gitlens",
"m4ns0ur.base64"
]
}
}
}