Skip to content

Commit 09b3386

Browse files
committed
Add devcontainer configuration
1 parent 2b570bb commit 09b3386

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.devcontainer/README.md

Whitespace-only changes.

.devcontainer/devcontainer.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "Bolt Development Container",
3+
"build": {
4+
"dockerfile": "../.github/runners/Dockerfile.ci",
5+
"context": "../.github/runners",
6+
"args": {
7+
"DEB_REGION": "",
8+
"HTTPS_PROXY": ""
9+
}
10+
},
11+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
12+
"forwardPorts": [],
13+
// Use 'portsAttributes' to set default properties for specific forwarded ports.
14+
"portsAttributes": {},
15+
// Use 'remoteEnv' to set environment variables that are only available inside the container.
16+
"remoteEnv": {
17+
},
18+
// Use 'mounts' to make files or directories from your local machine available inside the container.
19+
"mounts": [
20+
"source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached",
21+
"source=${localEnv:HOME}/.conan2,target=/home/${localEnv:USER}/.conan2,type=bind,consistency=cached",
22+
"source=bolt-ccache,target=/home/${localEnv:USER}/.ccache,type=volume"
23+
],
24+
// Configure tool-specific properties.
25+
"features": {}
26+
}

0 commit comments

Comments
 (0)