forked from devcontainers-extra/features
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
46 lines (46 loc) 路 1.57 KB
/
Copy pathdevcontainer-feature.json
File metadata and controls
46 lines (46 loc) 路 1.57 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
{
"name": "asdf package",
"id": "asdf-package",
"version": "1.0.10",
"description": "Installs an asdf package.",
"documentationURL": "http://github.com/devcontainers-extra/features/tree/main/src/asdf-package",
"installsAfter": [
"ghcr.io/devcontainers-extra/features/apt-get-packages"
],
"options": {
"plugin": {
"type": "string",
"proposals": [
"act",
"nomad"
],
"default": "",
"description": "Select the asdf plugin to install."
},
"version": {
"type": "string",
"proposals": [
"latest"
],
"default": "latest",
"description": "Select the version of the asdf plugin to install."
},
"pluginRepo": {
"type": "string",
"proposals": [
"https://github.com/grimoh/asdf-act.git",
"https://github.com/asdf-community/asdf-hashicorp.git"
],
"default": "",
"description": "Select the asdf plugin repo to install (can remain empty in order to use the plugin short-name index https://github.com/asdf-vm/asdf-plugins)"
},
"latestVersionPattern": {
"type": "string",
"proposals": [
"[0-9]"
],
"default": "",
"description": "this will be used as argument for 'asdf latest <plugin> <latestVersionPattern>' command. If none given the default asdf of '[0-9]' will be used."
}
}
}