-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer-template.json
31 lines (31 loc) · 1.07 KB
/
devcontainer-template.json
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
{
"id": "dotnet-postgres",
"version": "1.3.2",
"name": "C# (.NET) and PostgreSQL",
"description": "Develop C# and .NET Core based applications. Includes all needed SDKs, extensions, dependencies and a PostgreSQL container for parallel database development. Adds an additional PostgreSQL container to the C# (.NET Core) container definition.",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet-postgres",
"publisher": "Dev Container Spec Maintainers",
"licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE",
"options": {
"imageVariant": {
"type": "string",
"description": ".NET version:",
"proposals": [
"7.0",
"6.0",
"7.0-bullseye",
"6.0-bullseye",
"7.0-jammy",
"6.0-jammy",
"6.0-focal"
],
"default": "7.0"
}
},
"platforms": [
".NET",
".NET Core",
"C#",
"PostgreSQL"
]
}