|
6 | 6 | "service": "app", |
7 | 7 | "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", |
8 | 8 | "features": { |
| 9 | + "ghcr.io/devcontainers/features/dotnet:2": { |
| 10 | + "version": "latest" |
| 11 | + }, |
| 12 | + "ghcr.io/devcontainers/features/java:1": { |
| 13 | + "installGradle": true, |
| 14 | + "installMaven": true, |
| 15 | + "version": "latest", |
| 16 | + "jdkDistro": "ms", |
| 17 | + "gradleVersion": "latest", |
| 18 | + "mavenVersion": "3.8.6", |
| 19 | + "antVersion": "latest", |
| 20 | + "groovyVersion": "4.0.16" |
| 21 | + }, |
| 22 | + "ghcr.io/devcontainers/features/node:1": { |
| 23 | + "nodeGypDependencies": true, |
| 24 | + "version": "lts", |
| 25 | + "nvmVersion": "latest" |
| 26 | + } |
9 | 27 | }, |
10 | 28 |
|
11 | 29 | // Features to add to the dev container. More info: https://containers.dev/features. |
12 | 30 | // "features": {}, |
13 | 31 |
|
14 | 32 | // Use 'forwardPorts' to make a list of ports inside the container available locally. |
15 | | - "forwardPorts": [5432, 3000, 5000, 8000, 8080], |
| 33 | + "forwardPorts": [5432, 5000, 3000, 8000, 8080], |
16 | 34 |
|
17 | 35 | // Use 'postCreateCommand' to run commands after the container is created. |
18 | | - "postCreateCommand": "nvm install --lts" |
| 36 | + // "postCreateCommand": "python --version", |
19 | 37 |
|
20 | 38 | // Configure tool-specific properties. |
21 | | - // "customizations": {}, |
| 39 | + "customizations": { |
| 40 | + "vscode": { |
| 41 | + "extensions": [ |
| 42 | + "GitHub.copilot", |
| 43 | + "GitHub.copilot-chat", |
| 44 | + "ms-python.vscode-pylance", |
| 45 | + "ms-toolsai.jupyter", |
| 46 | + "ms-dotnettools.csdevkit", |
| 47 | + "vscjava.vscode-maven", |
| 48 | + "vscjava.vscode-gradle", |
| 49 | + ] |
| 50 | + } |
| 51 | + }, |
22 | 52 |
|
23 | 53 | // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. |
24 | 54 | // "remoteUser": "root" |
|
0 commit comments