-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdevcontainer.json
More file actions
23 lines (23 loc) · 985 Bytes
/
devcontainer.json
File metadata and controls
23 lines (23 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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": "devcontainer-features-playground-test1",
"image": "mcr.microsoft.com/vscode/devcontainers/base:0-jammy",
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a",
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode",
"features": {
"ghcr.io/devcontainers/features/azure-cli": {
// "extensions": "containerapp,ssh"
},
"ghcr.io/devcontainers-extra/features/fish-apt-get": {},
"ghcr.io/devcontainers/features/azure-cli:1": {
"extensions": "containerapp,ssh"
},
"./src/shell-history": {},
"./src/azure-cli-persistence": {}
}
}