Skip to content

Commit a9b743d

Browse files
Merge branch 'main' into patch-1
2 parents 6e22870 + b4002da commit a9b743d

42 files changed

Lines changed: 410 additions & 83 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/azure-cli/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Installs the Azure CLI along with needed dependencies. Useful for base Dockerfil
1818
| version | Select or enter an Azure CLI version. (Available versions may vary by Linux distribution.) | string | latest |
1919
| extensions | Optional comma separated list of Azure CLI extensions to install in profile. | string | - |
2020
| installBicep | Optionally install Azure Bicep | boolean | false |
21+
| bicepVersion | Select or enter a Bicep version. ('latest' or a specic version such as 'v0.31.92') | string | latest |
2122
| installUsingPython | Install Azure CLI using Python instead of pipx | boolean | false |
2223

2324
## Customizations

src/docker-in-docker/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Create child containers *inside* a container, independent from the host's docker
1818
| version | Select or enter a Docker/Moby Engine version. (Availability can vary by OS version.) | string | latest |
1919
| moby | Install OSS Moby build instead of Docker CE | boolean | true |
2020
| mobyBuildxVersion | Install a specific version of moby-buildx when using Moby | string | latest |
21-
| dockerDashComposeVersion | Default version of Docker Compose (latest, v2 or none) | string | latest |
21+
| dockerDashComposeVersion | Default version of Docker Compose (v1, v2 or none) | string | v2 |
2222
| azureDnsAutoDetection | Allow automatically setting the dockerd DNS server when the installation script detects it is running in Azure | boolean | true |
2323
| dockerDefaultAddressPool | Define default address pools for Docker networks. e.g. base=192.168.0.0/16,size=24 | string | - |
2424
| installDockerBuildx | Install Docker Buildx | boolean | true |
@@ -29,7 +29,7 @@ Create child containers *inside* a container, independent from the host's docker
2929

3030
### VS Code Extensions
3131

32-
- `ms-azuretools.vscode-docker`
32+
- `ms-azuretools.vscode-containers`
3333

3434
## Limitations
3535

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"customizations": {
7171
"vscode": {
7272
"extensions": [
73-
"ms-azuretools.vscode-docker"
73+
"ms-azuretools.vscode-containers"
7474
],
7575
"settings": {
7676
"github.copilot.chat.codeGeneration.instructions": [

src/docker-outside-of-docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Re-use the host docker socket, adding the Docker CLI to a container. Feature inv
2828

2929
### VS Code Extensions
3030

31-
- `ms-azuretools.vscode-docker`
31+
- `ms-azuretools.vscode-containers`
3232

3333
## Limitations
3434

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

Lines changed: 2 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.2",
3+
"version": "1.6.3",
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.",
@@ -50,7 +50,7 @@
5050
"customizations": {
5151
"vscode": {
5252
"extensions": [
53-
"ms-azuretools.vscode-docker"
53+
"ms-azuretools.vscode-containers"
5454
],
5555
"settings": {
5656
"github.copilot.chat.codeGeneration.instructions": [

src/docker-outside-of-docker/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ INSTALL_DOCKER_BUILDX="${INSTALLDOCKERBUILDX:-"true"}"
2020
INSTALL_DOCKER_COMPOSE_SWITCH="${INSTALLDOCKERCOMPOSESWITCH:-"true"}"
2121

2222
MICROSOFT_GPG_KEYS_URI="https://packages.microsoft.com/keys/microsoft.asc"
23-
DOCKER_MOBY_ARCHIVE_VERSION_CODENAMES="bookworm buster bullseye bionic focal jammy noble"
24-
DOCKER_LICENSED_ARCHIVE_VERSION_CODENAMES="bookworm buster bullseye bionic focal hirsute impish jammy noble"
23+
DOCKER_MOBY_ARCHIVE_VERSION_CODENAMES="bookworm buster bullseye bionic focal jammy noble plucky"
24+
DOCKER_LICENSED_ARCHIVE_VERSION_CODENAMES="bookworm buster bullseye bionic focal hirsute impish jammy noble plucky"
2525

2626
set -e
2727

src/dotnet/devcontainer-feature.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "dotnet",
3-
"version": "2.2.1",
3+
"version": "2.3.0",
44
"name": "Dotnet CLI",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/dotnet",
66
"description": "This Feature installs the latest .NET SDK, which includes the .NET CLI and the shared runtime. Options are provided to choose a different version or additional versions.",
@@ -11,6 +11,7 @@
1111
"latest",
1212
"lts",
1313
"none",
14+
"10.0-preview",
1415
"8.0",
1516
"7.0",
1617
"6.0"

src/dotnet/install.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@ done
108108
check_packages wget ca-certificates icu-devtools
109109

110110
for version in "${versions[@]}"; do
111-
install_sdk "$version"
111+
# Remove '-preview' from version if suffixed with the version label
112+
clean_version="$(echo "$version" | sed 's/-preview$//')"
113+
install_sdk "$clean_version"
112114
done
113115

114116
for version in "${dotnetRuntimeVersions[@]}"; do

src/dotnet/scripts/vendor/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,6 @@ dotnet-install.sh [--version latest] --channel 6.0 [--quality GA]
2323
dotnet-install.sh [--version latest] --channel 6.0.4xx [--quality GA]
2424
dotnet-install.sh [--version latest] --channel 8.0 --quality preview
2525
dotnet-install.sh [--version latest] --channel 8.0 --quality daily
26+
dotnet-install.sh [--version latest] --channel 10.0 --quality preview
2627
dotnet-install.sh --version 6.0.413
2728
```

src/git-lfs/devcontainer-feature.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "git-lfs",
3-
"version": "1.2.4",
3+
"version": "1.2.5",
44
"name": "Git Large File Support (LFS)",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/git-lfs",
66
"description": "Installs Git Large File Support (Git LFS) along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like git and curl.",
@@ -40,4 +40,4 @@
4040
"installsAfter": [
4141
"ghcr.io/devcontainers/features/common-utils"
4242
]
43-
}
43+
}

0 commit comments

Comments
 (0)