-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdevcontainer.json
More file actions
17 lines (16 loc) · 767 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
17 lines (16 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// For format details, see https://aka.ms/devcontainer.json.
{
"name": "Dev Container - Docker Compose Volume or Bind Example",
"dockerComposeFile": "docker-compose.yml",
"service": "example-devcontainer",
"workspaceFolder": "/workspace",
// Generate .devcontainer/.env containing WORKSPACE_* envars for docker-compose.yml
"initializeCommand": ".devcontainer/gen-docker-compose-workspace-env.sh --container-workspace-folder '${containerWorkspaceFolder}' --local-workspace-folder '${localWorkspaceFolder}'",
// General properties unrelated to the example follow...
"remoteUser": "vscode",
"extensions": [
"editorconfig.editorconfig",
"streetsidesoftware.code-spell-checker",
"timonwong.shellcheck",
]
}