-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdevcontainer.json
More file actions
38 lines (38 loc) · 1.06 KB
/
devcontainer.json
File metadata and controls
38 lines (38 loc) · 1.06 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
{
"name": "MultiversX Smart Contracts",
"image": "multiversx/devcontainer-smart-contracts-rust:latest",
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "latest",
"moby": false,
"installDockerBuildx": false
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Run commands after the container is created.
"postCreateCommand": "python3 ~/multiversx-sdk/devcontainer-resources/post_create_command.py",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"Elrond.vscode-elrond-ide",
"rust-lang.rust-analyzer",
"vadimcn.vscode-lldb",
"dtsvet.vscode-wasm"
],
"settings": {
"launch": {
"version": "0.2.0",
"configurations": [],
"compounds": []
},
"terminal.integrated.env.linux": {},
"terminal.integrated.defaultProfile.linux": "bash"
}
}
},
"containerEnv": {},
"remoteUser": "ubuntu"
}