forked from itsmechlark/features
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
47 lines (47 loc) · 1.31 KB
/
devcontainer-feature.json
File metadata and controls
47 lines (47 loc) · 1.31 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "PostgreSQL",
"id": "postgresql",
"version": "1.7.0",
"description": "PostgreSQL is a powerful, open source object-relational database system with over 35 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance.",
"options": {
"version": {
"type": "string",
"proposals": [
"latest",
"17",
"16",
"15",
"14",
"13",
"12",
"11"
],
"default": "latest",
"description": "Select or enter a version of PostgreSQL."
}
},
"mounts": [
{
"source": "dind-var-lib-postgresql-${devcontainerId}",
"target": "/var/lib/postgresql/data",
"type": "volume"
}
],
"containerEnv": {
"PGDATA": "/var/lib/postgresql/data",
"PGHOST": "localhost",
"PGUSER": "postgres"
},
"entrypoint": "/usr/local/share/pq-init.sh",
"privileged": true,
"customizations": {
"vscode": {
"extensions": [
"ms-ossdata.vscode-pgsql"
]
}
},
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
}