microsoft/gctoolkit
Publicmirrored from https://github.com/microsoft/gctoolkitAvailable
.devcontainer/devcontainer.json
22lines · modeblame
32a08278Bruno Borges4 years ago | 1 | // For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: |
| 2 | // https://github.com/microsoft/vscode-dev-containers/tree/v0.192.0/containers/ubuntu | |
| 3 | { | |
| 4 | "name": "Ubuntu", | |
| 5 | "build": { | |
| 6 | "dockerfile": "Dockerfile", | |
| 7 | // Update 'VARIANT' to pick an Ubuntu version: focal, bionic | |
| 8 | "args": { "VARIANT": "focal" } | |
| 9 | }, | |
| 10 | | |
| 11 | // Set *default* container specific settings.json values on container create. | |
| 12 | "settings": {}, | |
| 13 | | |
| 14 | // Add the IDs of extensions you want installed when the container is created. | |
| 15 | "extensions": [ | |
| 16 | "vscjava.vscode-java-pack", | |
| 17 | "redhat.vscode-xml" | |
| 18 | ], | |
| 19 | | |
| 20 | // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. | |
| 21 | "remoteUser": "vscode" | |
| 22 | } |