diff --git a/src/cpp-mariadb/README.md b/src/cpp-mariadb/README.md index 9cd4dd30..05f7e010 100644 --- a/src/cpp-mariadb/README.md +++ b/src/cpp-mariadb/README.md @@ -7,7 +7,7 @@ Develop C++ applications on Linux. Includes Debian C++ build tools. | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Debian / Ubuntu version (use Debian 12, Debian 11, Ubuntu 24.04, and Ubuntu 22.04 on local arm64/Apple Silicon): | string | debian12 | +| imageVariant | Debian / Ubuntu version (use Debian 13, Debian 12, Ubuntu 24.04, and Ubuntu 22.04 on local arm64/Apple Silicon): | string | debian13 | | reinstallCmakeVersionFromSource | Install CMake version different from what base image has already installed. | string | none | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. diff --git a/src/cpp/README.md b/src/cpp/README.md index 8c0e24ac..679e2f87 100644 --- a/src/cpp/README.md +++ b/src/cpp/README.md @@ -7,7 +7,7 @@ Develop C++ applications on Linux. Includes Debian C++ build tools. | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Debian / Ubuntu version (use debian12, debian11, ubuntu24.04, and ubuntu22.04 on local arm64/Apple Silicon): | string | debian12 | +| imageVariant | Debian / Ubuntu version (use Debian 13, Debian 12, Ubuntu 24.04, and Ubuntu 22.04 on local arm64/Apple Silicon): | string | debian13 | | reinstallCmakeVersionFromSource | Install CMake version different from what base image has already installed. | string | none | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. diff --git a/src/debian/README.md b/src/debian/README.md index 419cf291..07e7308d 100644 --- a/src/debian/README.md +++ b/src/debian/README.md @@ -7,13 +7,14 @@ Simple Debian container with Git installed. | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Debian version (use trixie bookworm or bullseye on local arm64/Apple Silicon): | string | trixie | +| imageVariant | Debian version (use trixie or bookworm on local arm64/Apple Silicon): | string | trixie | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. * **Image**: mcr.microsoft.com/devcontainers/base:debian ([source](https://github.com/devcontainers/images/tree/main/src/base-debian)) * **Applies devcontainer.json contents from image**: Yes ([source](https://github.com/devcontainers/images/blob/main/src/base-debian/.devcontainer/devcontainer.json)) + --- _Note: This file was auto-generated from the [devcontainer-template.json](https://github.com/devcontainers/templates/blob/main/src/debian/devcontainer-template.json). Add additional notes to a `NOTES.md`._ diff --git a/src/debian/devcontainer-template.json b/src/debian/devcontainer-template.json index f0b3de49..d40bcf96 100644 --- a/src/debian/devcontainer-template.json +++ b/src/debian/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "debian", - "version": "4.0.1", + "version": "4.0.2", "name": "Debian", "description": "Simple Debian container with Git installed.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/debian", @@ -9,7 +9,7 @@ "options": { "imageVariant": { "type": "string", - "description": "Debian version (use trixie bookworm or bullseye on local arm64/Apple Silicon):", + "description": "Debian version (use trixie or bookworm on local arm64/Apple Silicon):", "proposals": [ "trixie", "bookworm" diff --git a/src/docker-in-docker/NOTES.md b/src/docker-in-docker/NOTES.md index a769a711..966e976d 100644 --- a/src/docker-in-docker/NOTES.md +++ b/src/docker-in-docker/NOTES.md @@ -11,5 +11,5 @@ For this technique to work, the "Docker in Docker" Feature included in this temp The included `.devcontainer.json` can be altered to work with other Debian/Ubuntu-based container images such as `node` or `python`. For example, to use `mcr.microsoft.com/devcontainers/javascript-node`, update the `image` property as follows: ```json -"image": "mcr.microsoft.com/devcontainers/javascript-node:18-bullseye" +"image": "mcr.microsoft.com/devcontainers/javascript-node:22-bookworm" ``` diff --git a/src/docker-in-docker/README.md b/src/docker-in-docker/README.md index 896d72fc..bad13f3b 100644 --- a/src/docker-in-docker/README.md +++ b/src/docker-in-docker/README.md @@ -25,7 +25,7 @@ For this technique to work, the "Docker in Docker" Feature included in this temp The included `.devcontainer.json` can be altered to work with other Debian/Ubuntu-based container images such as `node` or `python`. For example, to use `mcr.microsoft.com/devcontainers/javascript-node`, update the `image` property as follows: ```json -"image": "mcr.microsoft.com/devcontainers/javascript-node:18-bullseye" +"image": "mcr.microsoft.com/devcontainers/javascript-node:22-bookworm" ``` diff --git a/src/docker-in-docker/devcontainer-template.json b/src/docker-in-docker/devcontainer-template.json index d69a245c..09cbbeb7 100644 --- a/src/docker-in-docker/devcontainer-template.json +++ b/src/docker-in-docker/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "docker-in-docker", - "version": "1.3.4", + "version": "1.3.5", "name": "Docker in Docker", "description": "Create child containers _inside_ a container, independent from the host's docker instance. Installs Docker extension in the container along with needed CLIs.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/docker-in-docker", diff --git a/src/docker-outside-of-docker-compose/NOTES.md b/src/docker-outside-of-docker-compose/NOTES.md index e43fdeda..da702a19 100644 --- a/src/docker-outside-of-docker-compose/NOTES.md +++ b/src/docker-outside-of-docker-compose/NOTES.md @@ -7,7 +7,7 @@ This example illustrates how you can do this by running CLI commands and using t The included `.devcontainer/Dockerfile` can be altered to work with other Debian/Ubuntu-based container images such as `node` or `python`. ```Dockerfile -FROM mcr.microsoft.com/devcontainers/javascript-node:18-bullseye +FROM mcr.microsoft.com/devcontainers/javascript-node:22-bookworm ``` ## Using bind mounts when working with Docker inside the container diff --git a/src/docker-outside-of-docker-compose/README.md b/src/docker-outside-of-docker-compose/README.md index 9364957d..9775f326 100644 --- a/src/docker-outside-of-docker-compose/README.md +++ b/src/docker-outside-of-docker-compose/README.md @@ -22,7 +22,7 @@ This example illustrates how you can do this by running CLI commands and using t The included `.devcontainer/Dockerfile` can be altered to work with other Debian/Ubuntu-based container images such as `node` or `python`. ```Dockerfile -FROM mcr.microsoft.com/devcontainers/javascript-node:18-bullseye +FROM mcr.microsoft.com/devcontainers/javascript-node:22-bookworm ``` ## Using bind mounts when working with Docker inside the container diff --git a/src/docker-outside-of-docker-compose/devcontainer-template.json b/src/docker-outside-of-docker-compose/devcontainer-template.json index c6026334..ce46d5ab 100644 --- a/src/docker-outside-of-docker-compose/devcontainer-template.json +++ b/src/docker-outside-of-docker-compose/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "docker-outside-of-docker-compose", - "version": "2.3.3", + "version": "2.3.4", "name": "Docker outside of Docker Compose", "description": "Access your host's Docker install from inside a container when using Docker Compose. Installs Docker extension in the container along with needed CLIs.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/docker-outside-of-docker-compose", diff --git a/src/docker-outside-of-docker/NOTES.md b/src/docker-outside-of-docker/NOTES.md index 5aea29fa..b57397f5 100644 --- a/src/docker-outside-of-docker/NOTES.md +++ b/src/docker-outside-of-docker/NOTES.md @@ -7,7 +7,7 @@ This example illustrates how you can do this by running CLI commands and using t The included `.devcontainer.json` can be altered to work with other Debian/Ubuntu-based container images such as `node` or `python`. For example, to use `mcr.microsoft.com/devcontainers/javascript-node`, update the `image` property as follows: ```json -"image": "mcr.microsoft.com/devcontainers/javascript-node:18-bullseye" +"image": "mcr.microsoft.com/devcontainers/javascript-node:22-bookworm" ``` ## Using bind mounts when working with Docker inside the container diff --git a/src/docker-outside-of-docker/README.md b/src/docker-outside-of-docker/README.md index 99c35e5f..f2b50987 100644 --- a/src/docker-outside-of-docker/README.md +++ b/src/docker-outside-of-docker/README.md @@ -22,7 +22,7 @@ This example illustrates how you can do this by running CLI commands and using t The included `.devcontainer.json` can be altered to work with other Debian/Ubuntu-based container images such as `node` or `python`. For example, to use `mcr.microsoft.com/devcontainers/javascript-node`, update the `image` property as follows: ```json -"image": "mcr.microsoft.com/devcontainers/javascript-node:18-bullseye" +"image": "mcr.microsoft.com/devcontainers/javascript-node:22-bookworm" ``` ## Using bind mounts when working with Docker inside the container diff --git a/src/docker-outside-of-docker/devcontainer-template.json b/src/docker-outside-of-docker/devcontainer-template.json index 51c32236..06ad1cf9 100644 --- a/src/docker-outside-of-docker/devcontainer-template.json +++ b/src/docker-outside-of-docker/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "docker-outside-of-docker", - "version": "1.3.3", + "version": "1.3.4", "name": "Docker outside of Docker", "description": "Access your host's Docker install from inside a dev container. Installs Docker extension in the container along with needed CLIs.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/docker-outside-of-docker", diff --git a/src/java-postgres/README.md b/src/java-postgres/README.md index b06733bb..640e2067 100644 --- a/src/java-postgres/README.md +++ b/src/java-postgres/README.md @@ -7,7 +7,7 @@ Develop applications with Java and PostgreSQL. Includes a Java application conta | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Java version (use -bookworm, or -bullseye variants on local arm64/Apple Silicon): | string | 21-bullseye | +| imageVariant | Java version (use -trixie, or -bookworm variants on local arm64/Apple Silicon): | string | 25-trixie | | installMaven | Install Maven, a management tool for Java | boolean | false | | installGradle | Install Gradle, a build automation tool for multi-language software development | boolean | false | diff --git a/src/java/README.md b/src/java/README.md index 96977c3d..a6d48c47 100644 --- a/src/java/README.md +++ b/src/java/README.md @@ -7,7 +7,7 @@ Develop Java applications. Includes the JDK and Java extensions. | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Java version (use -bookworm, or -bullseye variants on local arm64/Apple Silicon): | string | 21-bullseye | +| imageVariant | Java version (use -trixie, or -bookworm variants on local arm64/Apple Silicon): | string | 25-trixie | | installMaven | Install Maven, a management tool for Java | boolean | false | | installGradle | Install Gradle, a build automation tool for multi-language software development | boolean | false | diff --git a/src/javascript-node-mongo/README.md b/src/javascript-node-mongo/README.md index a719bc15..3c010e59 100644 --- a/src/javascript-node-mongo/README.md +++ b/src/javascript-node-mongo/README.md @@ -7,7 +7,7 @@ Develop applications in Node.js and Mongo DB. Includes Node.js, eslint, and yarn | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Node.js version (use -bullseye variants on local arm64/Apple Silicon): | string | 22-bookworm | +| imageVariant | Node.js version (use -bookworm variants on local arm64/Apple Silicon): | string | 24-bookworm | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. diff --git a/src/javascript-node-mongo/devcontainer-template.json b/src/javascript-node-mongo/devcontainer-template.json index 19e64633..498dfa25 100644 --- a/src/javascript-node-mongo/devcontainer-template.json +++ b/src/javascript-node-mongo/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "javascript-node-mongo", - "version": "6.0.1", + "version": "6.0.2", "name": "Node.js & Mongo DB", "description": "Develop applications in Node.js and Mongo DB. Includes Node.js, eslint, and yarn in a container linked to a Mongo DB.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/javascript-node-mongo", @@ -9,7 +9,7 @@ "options": { "imageVariant": { "type": "string", - "description": "Node.js version (use -bookworm or -bullseye variants on local arm64/Apple Silicon):", + "description": "Node.js version (use -bookworm variants on local arm64/Apple Silicon):", "proposals": [ "24-bookworm", "22-bookworm" diff --git a/src/javascript-node-postgres/README.md b/src/javascript-node-postgres/README.md index b71867e9..346d15b7 100644 --- a/src/javascript-node-postgres/README.md +++ b/src/javascript-node-postgres/README.md @@ -7,7 +7,7 @@ Develop applications in Node.js and PostgreSQL. Includes Node.js, eslint, and ya | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Node.js version (use -bookworm, -bullseye variants on local arm64/Apple Silicon): | string | 22-bookworm | +| imageVariant | Node.js version (use -trixie or -bookworm variants on local arm64/Apple Silicon): | string | 24-trixie | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. diff --git a/src/javascript-node-postgres/devcontainer-template.json b/src/javascript-node-postgres/devcontainer-template.json index cc0b0735..51f12df0 100644 --- a/src/javascript-node-postgres/devcontainer-template.json +++ b/src/javascript-node-postgres/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "javascript-node-postgres", - "version": "6.0.1", + "version": "6.0.2", "name": "Node.js & PostgreSQL", "description": "Develop applications in Node.js and PostgreSQL. Includes Node.js, eslint, and yarn in a container linked to a Postgres DB container", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/javascript-node-postgres", @@ -9,7 +9,7 @@ "options": { "imageVariant": { "type": "string", - "description": "Node.js version (use -trixie, -bookworm, or -bullseye variants on local arm64/Apple Silicon):", + "description": "Node.js version (use -trixie or -bookworm variants on local arm64/Apple Silicon):", "proposals": [ "24-trixie", "22-trixie", diff --git a/src/javascript-node/README.md b/src/javascript-node/README.md index 7f5f564b..80a806c7 100644 --- a/src/javascript-node/README.md +++ b/src/javascript-node/README.md @@ -7,7 +7,7 @@ Develop Node.js based applications. Includes Node.js, eslint, nvm, and yarn. | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Node.js version (use -bookworm, -bullseye variants on local arm64/Apple Silicon): | string | 22-bookworm | +| imageVariant | Node.js version (use -trixie or -bookworm variants on local arm64/Apple Silicon): | string | 24-trixie | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. diff --git a/src/javascript-node/devcontainer-template.json b/src/javascript-node/devcontainer-template.json index b81fbb11..2992a82f 100644 --- a/src/javascript-node/devcontainer-template.json +++ b/src/javascript-node/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "javascript-node", - "version": "6.0.1", + "version": "6.0.2", "name": "Node.js & JavaScript", "description": "Develop Node.js based applications. Includes Node.js, eslint, nvm, and yarn.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/javascript-node", @@ -9,7 +9,7 @@ "options": { "imageVariant": { "type": "string", - "description": "Node.js version (use -trixie, -bookworm, or -bullseye variants on local arm64/Apple Silicon):", + "description": "Node.js version (use -trixie or -bookworm variants on local arm64/Apple Silicon):", "proposals": [ "24-trixie", "22-trixie", diff --git a/src/jekyll/README.md b/src/jekyll/README.md index 568356ef..a0480d2d 100644 --- a/src/jekyll/README.md +++ b/src/jekyll/README.md @@ -7,7 +7,7 @@ Develop static sites with Jekyll, includes everything you need to get up and run | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Debian OS version (use bookworm, or bullseye on local arm64/Apple Silicon): | string | bullseye | +| imageVariant | Debian OS version (use bookworm on local arm64/Apple Silicon): | string | bookworm | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. diff --git a/src/jekyll/devcontainer-template.json b/src/jekyll/devcontainer-template.json index 472b18ac..b7af76d2 100644 --- a/src/jekyll/devcontainer-template.json +++ b/src/jekyll/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "jekyll", - "version": "2.2.3", + "version": "2.2.4", "name": "Jekyll", "description": "Develop static sites with Jekyll, includes everything you need to get up and running.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/jekyll", @@ -9,7 +9,7 @@ "options": { "imageVariant": { "type": "string", - "description": "Debian OS version (use bookworm, or bullseye on local arm64/Apple Silicon):", + "description": "Debian OS version (use bookworm on local arm64/Apple Silicon):", "proposals": [ "bookworm" ], diff --git a/src/kubernetes-helm-minikube/NOTES.md b/src/kubernetes-helm-minikube/NOTES.md index 0d5d8347..1baa074d 100644 --- a/src/kubernetes-helm-minikube/NOTES.md +++ b/src/kubernetes-helm-minikube/NOTES.md @@ -7,7 +7,7 @@ This example illustrates how you can do this by using CLIs ([kubectl](https://ku The included `.devcontainer.json` can be altered to work with other Debian/Ubuntu-based container images such as `node` or `python`. For example, to use `mcr.microsoft.com/devcontainers/javascript-node`, update the `image` property as follows: ```json -"image": "mcr.microsoft.com/devcontainers/javascript-node:18-bullseye" +"image": "mcr.microsoft.com/devcontainers/javascript-node:22-bookworm" ``` diff --git a/src/kubernetes-helm-minikube/README.md b/src/kubernetes-helm-minikube/README.md index 267e5e61..6b2e6588 100644 --- a/src/kubernetes-helm-minikube/README.md +++ b/src/kubernetes-helm-minikube/README.md @@ -14,7 +14,7 @@ This example illustrates how you can do this by using CLIs ([kubectl](https://ku The included `.devcontainer.json` can be altered to work with other Debian/Ubuntu-based container images such as `node` or `python`. For example, to use `mcr.microsoft.com/devcontainers/javascript-node`, update the `image` property as follows: ```json -"image": "mcr.microsoft.com/devcontainers/javascript-node:18-bullseye" +"image": "mcr.microsoft.com/devcontainers/javascript-node:22-bookworm" ``` diff --git a/src/kubernetes-helm-minikube/devcontainer-template.json b/src/kubernetes-helm-minikube/devcontainer-template.json index 78637f9f..3e6de0b4 100644 --- a/src/kubernetes-helm-minikube/devcontainer-template.json +++ b/src/kubernetes-helm-minikube/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "kubernetes-helm-minikube", - "version": "2.2.4", + "version": "2.2.5", "name": "Kubernetes - Minikube-in-Docker", "description": "Access an embedded minikube instance from inside a dev container. Includes kubectl, Helm, minikube, and the Docker.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/kubernetes-helm-minikube", diff --git a/src/kubernetes-helm/NOTES.md b/src/kubernetes-helm/NOTES.md index 7fa93135..0d895c94 100644 --- a/src/kubernetes-helm/NOTES.md +++ b/src/kubernetes-helm/NOTES.md @@ -7,7 +7,7 @@ Dev containers can be useful for all types of applications including those that The included `.devcontainer.json` can be altered to work with other Debian/Ubuntu-based container images such as `node` or `python`. For example, to use `mcr.microsoft.com/devcontainers/javascript-node`, update the `image` property as follows: ```json -"image": "mcr.microsoft.com/devcontainers/javascript-node:18-bullseye" +"image": "mcr.microsoft.com/devcontainers/javascript-node:22-bookworm" ``` diff --git a/src/kubernetes-helm/README.md b/src/kubernetes-helm/README.md index a799ced8..3239734f 100644 --- a/src/kubernetes-helm/README.md +++ b/src/kubernetes-helm/README.md @@ -14,7 +14,7 @@ Dev containers can be useful for all types of applications including those that The included `.devcontainer.json` can be altered to work with other Debian/Ubuntu-based container images such as `node` or `python`. For example, to use `mcr.microsoft.com/devcontainers/javascript-node`, update the `image` property as follows: ```json -"image": "mcr.microsoft.com/devcontainers/javascript-node:18-bullseye" +"image": "mcr.microsoft.com/devcontainers/javascript-node:22-bookworm" ``` diff --git a/src/kubernetes-helm/devcontainer-template.json b/src/kubernetes-helm/devcontainer-template.json index 6774be29..c0d53e22 100644 --- a/src/kubernetes-helm/devcontainer-template.json +++ b/src/kubernetes-helm/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "kubernetes-helm", - "version": "1.4.3", + "version": "1.4.4", "name": "Kubernetes - Local Configuration", "description": "Access a local (or remote) Kubernetes cluster from inside a dev container using your local config. Includes kubectl, Helm, and the Docker CLI.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/kubernetes-helm", diff --git a/src/php-mariadb/README.md b/src/php-mariadb/README.md index 4ef91199..fac35d35 100644 --- a/src/php-mariadb/README.md +++ b/src/php-mariadb/README.md @@ -7,7 +7,7 @@ Develop PHP applications with MariaDB (MySQL Compatible). | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | PHP version (use -bookworm, -bullseye variants on local arm64/Apple Silicon): | string | 8.5-trixie | +| imageVariant | PHP version (use -trixie or -bookworm variants on local arm64/Apple Silicon): | string | 8.5-trixie | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. diff --git a/src/php-mariadb/devcontainer-template.json b/src/php-mariadb/devcontainer-template.json index ae0f5540..90d00d6e 100644 --- a/src/php-mariadb/devcontainer-template.json +++ b/src/php-mariadb/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "php-mariadb", - "version": "4.4.0", + "version": "4.4.1", "name": "PHP & MariaDB", "description": "Develop PHP applications with MariaDB (MySQL Compatible).", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/php-mariadb", @@ -9,7 +9,7 @@ "options": { "imageVariant": { "type": "string", - "description": "PHP version (use -trixie, -bookworm, -bullseye variants on local arm64/Apple Silicon):", + "description": "PHP version (use -trixie or -bookworm variants on local arm64/Apple Silicon):", "proposals": [ "8.5-trixie", "8.5-bookworm", diff --git a/src/php/README.md b/src/php/README.md index 7b23cdfa..093dac30 100644 --- a/src/php/README.md +++ b/src/php/README.md @@ -7,7 +7,7 @@ Develop PHP based applications. Includes needed tools, extensions, and dependenc | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | PHP version (use -bookworm, -bullseye variants on local arm64/Apple Silicon): | string | 8.5-trixie| +| imageVariant | PHP version (use -trixie or -bookworm variants on local arm64/Apple Silicon): | string | 8.5-trixie | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. diff --git a/src/php/devcontainer-template.json b/src/php/devcontainer-template.json index be0a3e81..51aedb42 100644 --- a/src/php/devcontainer-template.json +++ b/src/php/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "php", - "version": "4.4.0", + "version": "4.4.1", "name": "PHP", "description": "Develop PHP based applications. Includes needed tools, extensions, and dependencies.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/php", @@ -9,7 +9,7 @@ "options": { "imageVariant": { "type": "string", - "description": "PHP version (use -trixie, -bookworm, -bullseye variants on local arm64/Apple Silicon):", + "description": "PHP version (use -trixie or -bookworm variants on local arm64/Apple Silicon):", "proposals": [ "8.5-trixie", "8.5-bookworm", diff --git a/src/postgres/README.md b/src/postgres/README.md index d8c3fb0a..5aae4eb0 100644 --- a/src/postgres/README.md +++ b/src/postgres/README.md @@ -7,7 +7,7 @@ Develop applications with Python 3 and PostgreSQL. Includes a Python application | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Python version (use -bookworm, or -bullseye variants on local arm64/Apple Silicon): | string | 3.11-bullseye | +| imageVariant | Python version (use -trixie or -bookworm variants on local arm64/Apple Silicon): | string | 3.14-trixie | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. diff --git a/src/postgres/devcontainer-template.json b/src/postgres/devcontainer-template.json index 01fe2eb9..4146d42b 100644 --- a/src/postgres/devcontainer-template.json +++ b/src/postgres/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "postgres", - "version": "3.0.0", + "version": "3.0.1", "name": "Python 3 & PostgreSQL", "description": "Develop applications with Python 3 and PostgreSQL. Includes a Python application container and PostgreSQL server.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/postgres", @@ -9,7 +9,7 @@ "options": { "imageVariant": { "type": "string", - "description": "Python version (use -trixie, -bookworm, or -bullseye variants on local arm64/Apple Silicon):", + "description": "Python version (use -trixie or -bookworm variants on local arm64/Apple Silicon):", "proposals": [ "3.14-trixie", "3.13-trixie", diff --git a/src/powershell/.devcontainer/devcontainer.json b/src/powershell/.devcontainer/devcontainer.json index 96950a10..38a4dc47 100644 --- a/src/powershell/.devcontainer/devcontainer.json +++ b/src/powershell/.devcontainer/devcontainer.json @@ -3,7 +3,7 @@ { "name": "PowerShell", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "mcr.microsoft.com/powershell:lts-debian-11", + "image": "mcr.microsoft.com/powershell:lts-debian-12", "features": { "ghcr.io/devcontainers/features/common-utils:2": { "installZsh": "true", diff --git a/src/powershell/devcontainer-template.json b/src/powershell/devcontainer-template.json index b3d14fa4..9bfc8f9a 100644 --- a/src/powershell/devcontainer-template.json +++ b/src/powershell/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "powershell", - "version": "1.2.2", + "version": "1.2.3", "name": "Powershell", "description": "Develop PowerShell scripts without installing anything locally.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/powershell", diff --git a/src/python/README.md b/src/python/README.md index 8e3add14..353394b3 100644 --- a/src/python/README.md +++ b/src/python/README.md @@ -7,7 +7,7 @@ Develop Python 3 applications. | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Python version (use -trixie, -bookworm, or -bullseye variants on local arm64/Apple Silicon): | string | 3.13-trixie | +| imageVariant | Python version (use -trixie, or -bookworm variants on local arm64/Apple Silicon): | string | 3.14-trixie | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. diff --git a/src/ruby-rails-postgres/README.md b/src/ruby-rails-postgres/README.md index c37b7784..92a20f94 100644 --- a/src/ruby-rails-postgres/README.md +++ b/src/ruby-rails-postgres/README.md @@ -7,7 +7,7 @@ Develop Ruby on Rails applications with Postgres. Includes a Rails application c | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Ruby version (use -trixie, -bookworm, -bullseye variants on local arm64/Apple Silicon) : | string |4-trixie | +| imageVariant | Ruby version (use -trixie or -bookworm variants on local arm64/Apple Silicon): | string | 4.0-trixie | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. diff --git a/src/ruby-rails-postgres/devcontainer-template.json b/src/ruby-rails-postgres/devcontainer-template.json index 934bce7b..5c2bad2f 100644 --- a/src/ruby-rails-postgres/devcontainer-template.json +++ b/src/ruby-rails-postgres/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "ruby-rails-postgres", - "version": "6.0.3", + "version": "6.0.4", "name": "Ruby on Rails & Postgres", "description": "Develop Ruby on Rails applications with Postgres. Includes a Rails application container and PostgreSQL server.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/ruby-rails-postgres", @@ -9,7 +9,7 @@ "options": { "imageVariant": { "type": "string", - "description": "Ruby version (use - trixie, -bookworm, -bullseye variants on local arm64/Apple Silicon):", + "description": "Ruby version (use -trixie or -bookworm variants on local arm64/Apple Silicon):", "proposals": [ "4.0-trixie", "3.4-trixie", diff --git a/src/ruby/README.md b/src/ruby/README.md index de614eac..0e07ba8d 100644 --- a/src/ruby/README.md +++ b/src/ruby/README.md @@ -7,7 +7,7 @@ Develop Ruby based applications. includes everything you need to get up and runn | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Ruby version (use -trixie, -bookworm, -bullseye variants on local arm64/Apple Silicon) : | string |4-trixie | +| imageVariant | Ruby version (use -trixie or -bookworm variants on local arm64/Apple Silicon): | string | 4.0-trixie | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. diff --git a/src/ruby/devcontainer-template.json b/src/ruby/devcontainer-template.json index ba86017b..1dddcd16 100644 --- a/src/ruby/devcontainer-template.json +++ b/src/ruby/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "ruby", - "version": "6.0.3", + "version": "6.0.4", "name": "Ruby", "description": "Develop Ruby based applications. includes everything you need to get up and running.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/ruby", @@ -9,7 +9,7 @@ "options": { "imageVariant": { "type": "string", - "description": "Ruby version (use -trixie, -bookworm, -bullseye variants on local arm64/Apple Silicon):", + "description": "Ruby version (use -trixie or -bookworm variants on local arm64/Apple Silicon):", "proposals": [ "4.0-trixie", "3.4-trixie", diff --git a/src/rust-postgres/README.md b/src/rust-postgres/README.md index 169ca3f8..b76c8ce3 100644 --- a/src/rust-postgres/README.md +++ b/src/rust-postgres/README.md @@ -7,7 +7,7 @@ Develop applications with Rust and PostgreSQL. Includes a Rust application conta | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Debian OS version (use trixie, bookworm, or bullseye on local arm64/Apple Silicon): | string | trixie | +| imageVariant | Debian OS version (use trixie or bookworm on local arm64/Apple Silicon): | string | trixie | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. diff --git a/src/rust-postgres/devcontainer-template.json b/src/rust-postgres/devcontainer-template.json index 1bc3d488..e11bd67b 100644 --- a/src/rust-postgres/devcontainer-template.json +++ b/src/rust-postgres/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "rust-postgres", - "version": "5.0.1", + "version": "5.0.2", "name": "Rust & PostgreSQL", "description": "Develop applications with Rust and PostgreSQL. Includes a Rust application container and PostgreSQL server.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/rust-postgres", @@ -9,7 +9,7 @@ "options": { "imageVariant": { "type": "string", - "description": "Debian OS version (use bookworm, or bullseye on local arm64/Apple Silicon):", + "description": "Debian OS version (use trixie or bookworm on local arm64/Apple Silicon):", "proposals": [ "trixie", "bookworm" diff --git a/src/rust/README.md b/src/rust/README.md index 2d32f077..7635bc06 100644 --- a/src/rust/README.md +++ b/src/rust/README.md @@ -7,7 +7,7 @@ Develop Rust based applications. Includes appropriate runtime args and everythin | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Debian OS version (use trixie, bookworm, or bullseye on local arm64/Apple Silicon): | string | trixie | +| imageVariant | Debian OS version (use trixie or bookworm on local arm64/Apple Silicon): | string | trixie | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. diff --git a/src/rust/devcontainer-template.json b/src/rust/devcontainer-template.json index 3850b9ce..d85d5f23 100644 --- a/src/rust/devcontainer-template.json +++ b/src/rust/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "rust", - "version": "5.0.1", + "version": "5.0.2", "name": "Rust", "description": "Develop Rust based applications. Includes appropriate runtime args and everything you need to get up and running.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/rust", @@ -9,7 +9,7 @@ "options": { "imageVariant": { "type": "string", - "description": "Debian OS version (use trixie, bookworm, or bullseye on local arm64/Apple Silicon):", + "description": "Debian OS version (use trixie or bookworm on local arm64/Apple Silicon):", "proposals": [ "trixie", "bookworm" diff --git a/src/typescript-node/README.md b/src/typescript-node/README.md index 3d309eb9..6bce0457 100644 --- a/src/typescript-node/README.md +++ b/src/typescript-node/README.md @@ -7,7 +7,7 @@ Develop Node.js based applications in TypeScript. Includes Node.js, eslint, nvm, | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| -| imageVariant | Node.js version (use -bookworm, -bullseye variants on local arm64/Apple Silicon): | string | 22-bookworm | +| imageVariant | Node.js version (use -trixie or -bookworm variants on local arm64/Apple Silicon): | string | 24-trixie | This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata. diff --git a/src/typescript-node/devcontainer-template.json b/src/typescript-node/devcontainer-template.json index c3b635dc..9d21f3a6 100644 --- a/src/typescript-node/devcontainer-template.json +++ b/src/typescript-node/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "typescript-node", - "version": "6.0.1", + "version": "6.0.2", "name": "Node.js & TypeScript", "description": "Develop Node.js based applications in TypeScript. Includes Node.js, eslint, nvm, yarn, and the TypeScript compiler.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/typescript-node", @@ -9,7 +9,7 @@ "options": { "imageVariant": { "type": "string", - "description": "Node.js version (use -trixie, -bookworm, or -bullseye variants on local arm64/Apple Silicon):", + "description": "Node.js version (use -trixie or -bookworm variants on local arm64/Apple Silicon):", "proposals": [ "24-trixie", "22-trixie",