Skip to content

Commit 6541272

Browse files
authored
Merge branch 'main' into dev/Mathi/Java
2 parents 5afb969 + 2eb4b5c commit 6541272

5 files changed

Lines changed: 45 additions & 8 deletions

File tree

src/docker-in-docker/devcontainer-feature.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "docker-in-docker",
3-
"version": "2.12.1",
3+
"version": "2.12.2",
44
"name": "Docker (Docker-in-Docker)",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/docker-in-docker",
66
"description": "Create child containers *inside* a container, independent from the host's docker instance. Installs Docker extension in the container along with needed CLIs.",
@@ -71,7 +71,14 @@
7171
"vscode": {
7272
"extensions": [
7373
"ms-azuretools.vscode-docker"
74-
]
74+
],
75+
"settings": {
76+
"github.copilot.chat.codeGeneration.instructions": [
77+
{
78+
"text": "This dev container includes the Docker CLI (`docker`) pre-installed and available on the `PATH` for running and managing containers using a dedicated Docker daemon running inside the dev container."
79+
}
80+
]
81+
}
7582
}
7683
},
7784
"mounts": [

src/docker-outside-of-docker/devcontainer-feature.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "docker-outside-of-docker",
3-
"version": "1.6.1",
3+
"version": "1.6.2",
44
"name": "Docker (docker-outside-of-docker)",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/docker-outside-of-docker",
66
"description": "Re-use the host docker socket, adding the Docker CLI to a container. Feature invokes a script to enable using a forwarded Docker socket within a container to run Docker commands.",
@@ -51,7 +51,14 @@
5151
"vscode": {
5252
"extensions": [
5353
"ms-azuretools.vscode-docker"
54-
]
54+
],
55+
"settings": {
56+
"github.copilot.chat.codeGeneration.instructions": [
57+
{
58+
"text": "This dev container includes the Docker CLI (`docker`) pre-installed and available on the `PATH` for running and managing containers using the Docker daemon on the host machine."
59+
}
60+
]
61+
}
5562
}
5663
},
5764
"mounts": [

src/github-cli/devcontainer-feature.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "github-cli",
3-
"version": "1.0.13",
3+
"version": "1.0.14",
44
"name": "GitHub CLI",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/github-cli",
66
"description": "Installs the GitHub CLI. Auto-detects latest version and installs needed dependencies.",
@@ -19,6 +19,17 @@
1919
"default": true
2020
}
2121
},
22+
"customizations": {
23+
"vscode": {
24+
"settings": {
25+
"github.copilot.chat.codeGeneration.instructions": [
26+
{
27+
"text": "This dev container includes the GitHub CLI (`gh`), which is pre-installed and available on the `PATH`. IMPORTANT: `gh api -f` does not support object values, use multiple `-f` flags with hierarchical keys and string values instead. When using GitHub actions `actions/upload-artifact` or `actions/download-artifact` use v4 or later."
28+
}
29+
]
30+
}
31+
}
32+
},
2233
"installsAfter": [
2334
"ghcr.io/devcontainers/features/common-utils",
2435
"ghcr.io/devcontainers/features/git"

src/node/devcontainer-feature.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "node",
3-
"version": "1.6.1",
3+
"version": "1.6.2",
44
"name": "Node.js (via nvm), yarn and pnpm",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/node",
66
"description": "Installs Node.js, nvm, yarn, pnpm, and needed dependencies.",
@@ -61,7 +61,14 @@
6161
"vscode": {
6262
"extensions": [
6363
"dbaeumer.vscode-eslint"
64-
]
64+
],
65+
"settings": {
66+
"github.copilot.chat.codeGeneration.instructions": [
67+
{
68+
"text": "This dev container includes `node`, `npm` and `eslint` pre-installed and available on the `PATH` for Node.js and JavaScript development."
69+
}
70+
]
71+
}
6572
}
6673
},
6774
"containerEnv": {

src/python/devcontainer-feature.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "python",
3-
"version": "1.7.0",
3+
"version": "1.7.1",
44
"name": "Python",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/python",
66
"description": "Installs the provided version of Python, as well as PIPX, and other common Python utilities. JupyterLab is conditionally installed with the python feature. Note: May require source code compilation.",
@@ -77,6 +77,11 @@
7777
"ms-python.autopep8"
7878
],
7979
"settings": {
80+
"github.copilot.chat.codeGeneration.instructions": [
81+
{
82+
"text": "This dev container includes `python3` and `pip3` pre-installed and available on the `PATH`, along with the Python language extensions for Python development."
83+
}
84+
],
8085
"python.defaultInterpreterPath": "/usr/local/python/current/bin/python",
8186
"[python]": {
8287
"editor.defaultFormatter": "ms-python.autopep8"

0 commit comments

Comments
 (0)