Skip to content

Commit b0a3fe7

Browse files
Merge branch 'main' into main
2 parents a65440f + 40021c7 commit b0a3fe7

38 files changed

+404
-77
lines changed

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: 1 addition & 1 deletion
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 |

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

Lines changed: 1 addition & 1 deletion
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.",

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+
}

src/git-lfs/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ if ! git lfs ls-files > /dev/null 2>&1; then
270270
echo "(!) Skipping automatic 'git lfs pull' because no git lfs files were detected"
271271
exit 0
272272
fi
273-
273+
git lfs install
274274
git lfs pull
275275
EOF
276276

src/kubectl-helm-minikube/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "kubectl-helm-minikube",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"name": "Kubectl, Helm, and Minikube",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/kubectl-helm-minikube",
66
"description": "Installs latest version of kubectl, Helm, and optionally minikube. Auto-detects latest versions and installs needed dependencies.",

0 commit comments

Comments
 (0)