-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
37 lines (37 loc) · 1.01 KB
/
devcontainer-feature.json
File metadata and controls
37 lines (37 loc) · 1.01 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
{
"name": "Redis Server",
"id": "redis-server",
"version": "1.3.0",
"description": "The open source, in-memory data store used by millions of developers as a database, cache, streaming engine, and message broker.",
"options": {
"version": {
"type": "string",
"proposals": [
"latest",
"8",
"7"
],
"default": "latest",
"description": "Select or enter a version of Redis."
}
},
"mounts": [
{
"source": "dind-var-lib-redis-server-${devcontainerId}",
"target": "/var/lib/redis-server/data",
"type": "volume"
}
],
"entrypoint": "/usr/local/share/redis-server-init.sh",
"privileged": true,
"customizations": {
"vscode": {
"extensions": [
"cweijan.vscode-redis-client"
]
}
},
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
}