-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
53 lines (53 loc) · 1.53 KB
/
devcontainer.json
File metadata and controls
53 lines (53 loc) · 1.53 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "nso",
"image": "docker.io/library/cisco-nso-prod:6.5",
"runArgs": ["--env-file", "sandbox_env_vars.sh"],
"overrideCommand": false,
"containerUser": "nso",
"forwardPorts": [22, 179, 443, 2024, 4369, 8080],
"features": {
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/python:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.pylint",
"oderwat.indent-rainbow",
"esbenp.prettier-vscode",
"ms-python.black-formatter",
"aaron-bond.better-comments",
"ciscocrossworknso.nso-explorer",
"ciscocrossworknso.nso-ide",
"donjayamanne.python-environment-manager"
],
"settings": {
"pylint.enabled": true,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true
},
"git.postCommitCommand": "push",
"git.ignoreLimitWarning": true,
"indentRainbow.ignoreErrorLanguages": ["*"],
"indentRainbow.colorOnWhiteSpaceOnly": true,
"indentRainbow.colors": [
"rgba(250, 244, 81, 0.714)",
"rgba(79, 255, 91, 0.714)",
"rgba(94, 207, 255, 0.571)",
"rgba(255, 173, 73, 0.632)"
],
"NSO.Instance": [
{
"name": "nso container",
"host": "127.0.0.1",
"port": 8080,
"scheme": "http",
"username": "developer",
"password": "C1sco12345"
}
]
}
}
}
}