Skip to content
Open
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
7 changes: 2 additions & 5 deletions src/ruby-rails-postgres/devcontainer-template.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "ruby-rails-postgres",
"version": "6.0.0",
"version": "6.0.1",
"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",
Expand All @@ -14,14 +14,11 @@
"4-trixie",
"3.4-trixie",
"3.3-trixie",
"3.2-trixie",
"4-bookworm",
"3.4-bookworm",
"3.3-bookworm",
"3.2-bookworm",
"3.4-bullseye",
"3.3-bullseye",
"3.2-bullseye"
"3.3-bullseye"
],
"default": "4-trixie"
}
Expand Down
7 changes: 2 additions & 5 deletions src/ruby/devcontainer-template.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "ruby",
"version": "6.0.0",
"version": "6.0.1",
"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",
Expand All @@ -14,14 +14,11 @@
"4-trixie",
"3.4-trixie",
"3.3-trixie",
"3.2-trixie",
"4-bookworm",
"3.4-bookworm",
"3.3-bookworm",
"3.2-bookworm",
"3.4-bullseye",
"3.3-bullseye",
"3.2-bullseye"
"3.3-bullseye"
],
"default": "4-trixie"
}
Expand Down
2 changes: 1 addition & 1 deletion src/universal/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"name": "Default Linux Universal",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/universal:5-linux"
"image": "mcr.microsoft.com/devcontainers/universal:6-linux"

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
Expand Down
2 changes: 1 addition & 1 deletion src/universal/devcontainer-template.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "universal",
"version": "2.0.0",
"version": "2.0.1",
"name": "Default Linux Universal",
"description": "Use or extend the new Ubuntu-based default, large, multi-language universal container for GitHub Codespaces.",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/universal",
Expand Down
22 changes: 9 additions & 13 deletions test/universal/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,21 +113,17 @@ check "RAILS_DEVELOPMENT_HOSTS is set correctly" echo $RAILS_DEVELOPMENT_HOSTS |
check "oryx" oryx --version

# Install platforms with oryx build tool
check "oryx-install-dotnet-2.1" oryx prep --skip-detection --platforms-and-versions dotnet=2.1.30
check "dotnet-2-installed-by-oryx" ls /opt/dotnet/ | grep 2.1
check "dotnet-version-on-path-is-2.1.12" dotnet --version | grep 2.1
check "oryx-install-dotnet-8.0" oryx prep --skip-detection --platforms-and-versions dotnet=8.0.23
check "dotnet-8-installed-by-oryx" ls /opt/dotnet/ | grep 8.0
check "dotnet-version-on-path-is-8.0.23" dotnet --version | grep 8.0.23

check "oryx-install-nodejs-12.22.11" oryx prep --skip-detection --platforms-and-versions nodejs=12.22.11
check "nodejs-12.22.11-installed-by-oryx" ls /opt/nodejs/ | grep 12.22.11
check "nodejs-version-on-path-is-2.1.12" node --version | grep v12.22.11
check "oryx-install-nodejs-20.11.0" oryx prep --skip-detection --platforms-and-versions nodejs=20.11.0
check "nodejs-20.11.0-installed-by-oryx" ls /opt/nodejs/ | grep 20.11.0
check "nodejs-version-on-path-is-20.11.0" node --version | grep v20.11.0

check "oryx-install-php-7.3.25" oryx prep --skip-detection --platforms-and-versions php=7.3.25
check "php-7.3.25-installed-by-oryx" ls /opt/php/ | grep 7.3.25
check "php-version-on-path-is-2.1.12" php --version | grep 7.3.25

check "oryx-install-java-12.0.2" oryx prep --skip-detection --platforms-and-versions java=12.0.2
check "java-12.0.2-installed-by-oryx" ls /opt/java/ | grep 12.0.2
check "java-version-on-path-is-12.0.2" java --version | grep 12.0.2
check "oryx-install-php-8.1.30" oryx prep --skip-detection --platforms-and-versions php=8.1.30
check "php-8.1.30-installed-by-oryx" ls /opt/php/ | grep 8.1.30
check "php-version-on-path-is-8.1.30" php --version | grep 8.1.30

ls -la /home/codespace

Expand Down
Loading