Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/alpine/devcontainer-template.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "alpine",
"version": "3.4.0",
"version": "3.5.0",
"name": "Alpine",
"description": "Simple Alpine container with Git installed.",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/alpine",
Expand All @@ -11,11 +11,11 @@
"type": "string",
"description": "Alpine version:",
"proposals": [
"3.23",
"3.22",
"3.21",
"3.20"
"3.21"
],
"default": "3.22"
"default": "3.23"
}
},
"platforms": ["Any"],
Expand Down
2 changes: 1 addition & 1 deletion src/cpp-mariadb/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/devcontainers/cpp:2-${templateOption:imageVariant}
FROM mcr.microsoft.com/devcontainers/cpp:3-${templateOption:imageVariant}
Comment thread
Kaniska244 marked this conversation as resolved.

# Everything below this is needed for installing MariaDB
# Instructions are copied and modified from: https://mariadb.com/docs/clients/mariadb-connectors/connector-cpp/install/
Expand Down
3 changes: 1 addition & 2 deletions src/cpp-mariadb/devcontainer-template.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"id": "cpp-mariadb",
"version": "4.0.0",
"name": "C++ & MariaDB",
"version": "4.1.0",
"description": "Develop C++ applications on Linux. Includes Debian C++ build tools.",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/cpp-mariadb",
"publisher": "Dev Container Spec Maintainers",
Expand Down
2 changes: 1 addition & 1 deletion src/cpp/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/devcontainers/cpp:2-${templateOption:imageVariant}
FROM mcr.microsoft.com/devcontainers/cpp:3-${templateOption:imageVariant}
Comment thread
Kaniska244 marked this conversation as resolved.

ARG REINSTALL_CMAKE_VERSION_FROM_SOURCE="${templateOption:reinstallCmakeVersionFromSource}"

Expand Down
3 changes: 1 addition & 2 deletions src/cpp/devcontainer-template.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"id": "cpp",
"version": "4.0.0",
"name": "C++",
"version": "4.1.0",
"description": "Develop C++ applications on Linux. Includes Debian C++ build tools.",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/cpp",
"publisher": "Dev Container Spec Maintainers",
Expand Down
2 changes: 1 addition & 1 deletion src/php-mariadb/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/devcontainers/php:3-${templateOption:imageVariant}
FROM mcr.microsoft.com/devcontainers/php:4-${templateOption:imageVariant}

# Install MariaDB client
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
Expand Down
4 changes: 1 addition & 3 deletions src/php-mariadb/devcontainer-template.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "php-mariadb",
"version": "4.3.0",
"version": "4.4.0",
"name": "PHP & MariaDB",
"description": "Develop PHP applications with MariaDB (MySQL Compatible).",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/php-mariadb",
Expand All @@ -17,8 +17,6 @@
"8.4-bookworm",
"8.3-trixie",
"8.3-bookworm",
"8.2-trixie",
"8.2-bookworm",
"8-trixie"
],
"default": "8.5-trixie"
Expand Down
2 changes: 1 addition & 1 deletion src/php/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"name": "PHP",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/php:3-${templateOption:imageVariant}",
"image": "mcr.microsoft.com/devcontainers/php:4-${templateOption:imageVariant}",

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
Expand Down
4 changes: 1 addition & 3 deletions src/php/devcontainer-template.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "php",
"version": "4.3.0",
"version": "4.4.0",
"name": "PHP",
"description": "Develop PHP based applications. Includes needed tools, extensions, and dependencies.",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/php",
Expand All @@ -17,8 +17,6 @@
"8.4-bookworm",
"8.3-trixie",
"8.3-bookworm",
"8.2-trixie",
"8.2-bookworm",
"8-bookworm"
],
"default": "8.5-trixie"
Expand Down
2 changes: 1 addition & 1 deletion src/typescript-node/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"name": "Node.js & TypeScript",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:4-${templateOption:imageVariant}"
"image": "mcr.microsoft.com/devcontainers/typescript-node:5-${templateOption:imageVariant}"
Comment thread
Kaniska244 marked this conversation as resolved.

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
Expand Down
7 changes: 2 additions & 5 deletions src/typescript-node/devcontainer-template.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "typescript-node",
"version": "5.0.0",
"version": "6.0.0",
"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",
Expand All @@ -13,13 +13,10 @@
"proposals": [
"24-trixie",
"22-trixie",
"20-trixie",
"24-bookworm",
"22-bookworm",
"20-bookworm",
"24-bullseye",
"22-bullseye",
"20-bullseye"
"22-bullseye"
],
"default": "24-trixie"
}
Expand Down
Loading