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
36 lines (36 loc) · 1.12 KB
/
devcontainer-template.json
File metadata and controls
36 lines (36 loc) · 1.12 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
35
36
{
"id": "php-mariadb",
"version": "4.3.0",
"name": "PHP & MariaDB",
"description": "Develop PHP applications with MariaDB (MySQL Compatible).",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/php-mariadb",
"publisher": "Dev Container Spec Maintainers",
"licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE",
"options": {
"imageVariant": {
"type": "string",
"description": "PHP version (use -trixie, -bookworm, -bullseye variants on local arm64/Apple Silicon):",
"proposals": [
"8.5-trixie",
"8.5-bookworm",
"8.5-bullseye",
"8.4-trixie",
"8.4-bookworm",
"8.4-bullseye",
"8.3-trixie",
"8.3-bookworm",
"8.3-bullseye",
"8-bullseye",
"8-trixie"
],
"default": "8.5-trixie"
}
},
"platforms": [
"PHP",
"MariaDB (MySQL Compatible)"
],
"optionalPaths": [
".github/*"
]
}