forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
29 lines (29 loc) 路 1.02 KB
/
Copy pathdevcontainer.json
File metadata and controls
29 lines (29 loc) 路 1.02 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
{
"name": "dbatools",
"workspaceFolder": "/workspace",
"dockerComposeFile": [
"docker-compose.yml"
],
"remoteEnv": {
"LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}",
"MY_SERVERS": "dbatools1,dbatools2,dbatools3",
"MY_SERVER": "dbatools1"
},
"service": "dbatools1",
"settings": {
"terminal.integrated.shell.linux": "/usr/bin/pwsh"
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"ms-vscode.powershell",
"github.vscode-pull-request-github",
"2gua.rainbow-brackets",
"oderwat.indent-rainbow",
"mhutchie.git-graph",
"usernamehw.errorlens"
]
// Uncomment the next line if you want to keep your containers running after VS Code shuts down.
// "shutdownAction": "none",
// Uncomment the next line to run commands after the container is created - for example installing curl.
// "postCreateCommand": "apt-get update && apt-get install -y curl",
}