-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
51 lines (50 loc) · 1.69 KB
/
devcontainer.json
File metadata and controls
51 lines (50 loc) · 1.69 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
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/ubuntu
{
"name": "Power Platform Fusion Development",
"build": {
"dockerfile": "Dockerfile",
"args": {
"VARIANT": "16-bullseye"
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// Alternatively you may add the commands to a shellscript:
"postCreateCommand": "sh .devcontainer/install-pp-tools.sh",
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "node",
"features": {
//"ghcr.io/devcontainers/features/powershell:1": {}
"ghcr.io/devcontainers/features/dotnet:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/git-lfs:1": {
"version": "latest"
}
},
"customizations": {
"vscode": {
"extensions": [
"GitHub.vscode-pull-request-github",
"ms-azuretools.vscode-azurefunctions",
"ms-azuretools.vscode-docker",
"ms-vscode.azure-account",
"stoplight.spectral",
"microsoft-IsvExpTools.powerplatform-vscode",
"streetsidesoftware.code-spell-checker",
"42Crunch.vscode-openapi",
"danish-naglekar.power-platform-extension-pack",
"DanielLaskewitz.power-platform-connectors",
"DavidAnson.vscode-markdownlint",
"megel.mme2k-powerapps-helper",
"ms-vscode-remote.remote-containers",
"jebbs.plantuml",
"github.vscode-github-actions",
"vscodevim.vim",
"bierner.markdown-mermaid"
]
}
}
}