forked from devcontainers/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer-template.json
More file actions
34 lines (34 loc) · 1.17 KB
/
devcontainer-template.json
File metadata and controls
34 lines (34 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"id": "ruby-rails-postgres",
"version": "6.0.0",
"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",
"publisher": "Dev Container Spec Maintainers",
"licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE",
"options": {
"imageVariant": {
"type": "string",
"description": "Ruby version (use -bookworm, -bullseye variants on local arm64/Apple Silicon):",
"proposals": [
"4-trixie",
"3.4-trixie",
"3.3-trixie",
"3.2-trixie",
"4-bookworm",
"3.4-bookworm",
"3.3-bookworm",
"3.2-bookworm",
"4-bullseye",
"3.4-bullseye",
"3.3-bullseye",
"3.2-bullseye"
],
"default": "4-trixie"
}
},
"platforms": ["Ruby"],
"optionalPaths": [
".github/*"
]
}