|
2 | 2 | // https://github.com/microsoft/vscode-dev-containers/tree/v0.194.0/containers/docker-existing-dockerfile |
3 | 3 | { |
4 | 4 | "name": "Existing Dockerfile", |
5 | | - |
6 | | - // Sets the run context to one level up instead of the .devcontainer folder. |
7 | 5 | "context": "..", |
8 | | - |
9 | | - // Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename. |
10 | 6 | "dockerFile": "../Dockerfile", |
11 | | - |
12 | | - // Set *default* container specific settings.json values on container create. |
13 | 7 | "settings": {}, |
14 | | - |
15 | | - // Add the IDs of extensions you want installed when the container is created. |
16 | | - "extensions": [] |
17 | | - |
18 | | - // Use 'forwardPorts' to make a list of ports inside the container available locally. |
19 | | - // "forwardPorts": [], |
20 | | - |
21 | | - // Uncomment the next line to run commands after the container is created - for example installing curl. |
22 | | - // "postCreateCommand": "apt-get update && apt-get install -y curl", |
23 | | - |
24 | | - // Uncomment when using a ptrace-based debugger like C++, Go, and Rust |
25 | | - // "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ], |
26 | | - |
27 | | - // Uncomment to use the Docker CLI from inside the container. See https://aka.ms/vscode-remote/samples/docker-from-docker. |
28 | | - // "mounts": [ "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" ], |
29 | | - |
30 | | - // Uncomment to connect as a non-root user if you've added one. See https://aka.ms/vscode-remote/containers/non-root. |
31 | | - // "remoteUser": "vscode" |
| 8 | + "extensions": [ |
| 9 | + "maelvalais.autoconf", |
| 10 | + "aaron-bond.better-comments", |
| 11 | + "jeff-hykin.better-cpp-syntax", |
| 12 | + "mads-hartmann.bash-ide-vscode", |
| 13 | + "ms-vscode.cpptools", |
| 14 | + "jbenden.c-cpp-flylint", |
| 15 | + "ms-vscode.cpptools-extension-pack", |
| 16 | + "xaver.clang-format", |
| 17 | + "p1c2u.docker-compose", |
| 18 | + "ms-azuretools.vscode-docker", |
| 19 | + "mikestead.dotenv", |
| 20 | + "usernamehw.errorlens", |
| 21 | + "eamodio.gitlens", |
| 22 | + "EditorConfig.EditorConfig", |
| 23 | + "christian-kohler.path-intellisense", |
| 24 | + "xdebug.php-debug", |
| 25 | + "bmewburn.vscode-intelephense-client", |
| 26 | + "ms-python.vscode-pylance", |
| 27 | + "ms-python.python", |
| 28 | + "JordanHury.sqltools-cassandra", |
| 29 | + "VisualStudioExptTeam.vscodeintellicode", |
| 30 | + "redhat.vscode-yaml" |
| 31 | + ], |
| 32 | + "forwardPorts": [], |
| 33 | + "remoteUser": "root" |
32 | 34 | } |
0 commit comments