forked from devcontainers/features
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscenarios.json
More file actions
40 lines (40 loc) · 1.08 KB
/
scenarios.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"install_modules": {
"image": "mcr.microsoft.com/devcontainers/base:noble",
"features": {
"powershell": {
"modules": "az.resources, az.storage",
"powershellProfileURL": "https://raw.githubusercontent.com/codspace/powershell-profile/main/Test-Profile.ps1"
}
}
},
"install_powershell_fallback_test": {
"image": "mcr.microsoft.com/devcontainers/base:noble",
"features": {
"powershell": {
"modules": "az.resources, az.storage",
"powershellProfileURL": "https://raw.githubusercontent.com/codspace/powershell-profile/main/Test-Profile.ps1"
}
}
},
"install_modules_version": {
"image": "mcr.microsoft.com/devcontainers/base:noble",
"features": {
"powershell": {
"modules": "az.resources==2.5.0, az.storage==4.3.0"
}
}
},
"validate_powershell_installation": {
"image": "mcr.microsoft.com/devcontainers/base:noble",
"features": {
"powershell": {}
}
},
"powershell_alma_linux": {
"image": "almalinux:9",
"features": {
"powershell": {}
}
}
}