forked from ecampuslearning/containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Devcontainer.json
44 lines (44 loc) · 1.52 KB
/
Devcontainer.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
{
"id": "docker-in-docker",
"version": "1.0.3",
"name": "Docker in Docker",
"description": "Create child containers _inside_ a container, independent from the host's docker instance. Installs Docker extension in the container along with needed CLIs.",
"documentationURL": "https://github.com/ecampuslearning/devcontainers/templates/tree/main/src/docker-in-docker",
"publisher": "officialmofabs",
"licenseURL": "https://github.com/devcontainers/ecampuslearning/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 user to access Docker in container?",
"default": "true"
}
},
"platforms": [
"Any"
]
}