forked from logicalclocks/rondis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer.json
39 lines (39 loc) · 1.38 KB
/
devcontainer.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
32
33
34
35
36
37
38
39
{
"name": "Pink builder",
"build": {
"context": "..",
"dockerfile": "../Dockerfile"
},
"workspaceMount": "source=${localWorkspaceFolder},target=/usr/src/app,type=bind",
"workspaceFolder": "/usr/src/app",
"features": {
"ghcr.io/devcontainers/features/common-utils:2.5.1": {},
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
"ghcr.io/devcontainers/features/git:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"github.copilot",
"ms-vscode.cpptools",
"ms-vscode.cmake-tools",
"ms-vscode.cpptools-extension-pack"
],
// Set *default* container specific settings.json values on container create.
"settings": {
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": false,
"scminput": false
},
"github.copilot.editor.enableAutoCompletions": true
}
}
},
"containerEnv": {
"RONDB_PATH": "/usr/src/app/rondb-24.10.0-linux-glibc2.28-arm64_v8",
// This assumes that the RonDB tarball is placed the root of the workspace folder
"LD_LIBRARY_PATH": "/usr/src/app/rondb-24.10.0-linux-glibc2.28-arm64_v8/lib"
}
}