-
Notifications
You must be signed in to change notification settings - Fork 294
/
Copy pathdevcontainer-template.json
45 lines (45 loc) · 1.53 KB
/
devcontainer-template.json
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
{
"id": "docker-outside-of-docker",
"version": "1.3.2",
"name": "Docker outside of Docker",
"description": "Access your host's Docker install from inside a dev container. Installs Docker extension in the container along with needed CLIs.",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/docker-outside-of-docker",
"publisher": "Dev Container Spec Maintainers",
"licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE",
"options": {
"installZsh": {
"type": "boolean",
"description": "Install ZSH!?",
"default": "true"
},
"upgradePackages": {
"type": "boolean",
"description": "Upgrade OS packages?",
"default": "false"
},
"dockerVersion": {
"type": "string",
"proposals": [
"latest",
"none",
"20.10"
],
"default": "latest",
"description": "Select or enter a Docker/Moby CLI version. (Availability can vary by OS version.)"
},
"moby": {
"type": "boolean",
"default": "true",
"description": "Install OSS Moby build instead of Docker CE"
},
"enableNonRootDocker": {
"type": "boolean",
"description": "Enable non-root Docker access in container?",
"default": "true"
}
},
"platforms": ["Any"],
"optionalPaths": [
".github/*"
]
}