All checks were successful
/ build-docker-image (push) Successful in 1m48s
28 lines
656 B
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
}
|