-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathdevcontainer.json
54 lines (54 loc) · 1.12 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "AO Container",
"dockerComposeFile": "docker-compose.yaml",
"service": "development",
"workspaceFolder": "/workspace",
"customizations": {
"vscode": {
"extensions": [
// Spell Checker
"streetsidesoftware.code-spell-checker",
// VS Code Icons
"vscode-icons-team.vscode-icons",
// Rust
"vadimcn.vscode-lldb",
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"serayuzgur.crates",
// Node
"dbaeumer.vscode-eslint",
// Python
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.autopep8",
// C/C++
"ms-vscode.cpptools",
"ms-vscode.cmake-tools"
],
"settings": {
"workbench.iconTheme": "vscode-icons",
"python.defaultInterpreterPath": "/usr/local/python/current/bin/python",
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8"
},
"files.watcherExclude": {
"**/target/**": true
}
}
}
},
"capAdd": [
"SYS_PTRACE"
],
"securityOpt": [
"seccomp=unconfined"
],
"forwardPorts": [
9000, // SU
5432, // Postgres
6363, // CU
3004 // MU
],
"shutdownAction": "none",
"remoteUser": "root"
}