{ "id": "docker-in-docker", "version": "1.0.6", "name": "Docker (Docker-in-Docker)", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/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.", "options": { "version": { "type": "string", "proposals": [ "latest", "none", "20.10" ], "default": "latest", "description": "Select or enter a Docker/Moby Engine version. (Availability can vary by OS version.)" }, "moby": { "type": "boolean", "default": true, "description": "Install OSS Moby build instead of Docker CE" }, "dockerDashComposeVersion": { "type": "string", "enum": [ "v1", "v2" ], "default": "v1", "description": "Default version of Docker Compose (v1 or v2)" }, "azureDnsAutoDetection": { "type": "boolean", "default": true, "description": "Allow automatically setting the dockerd DNS server when the installation script detects it is running in Azure" } }, "entrypoint": "/usr/local/share/docker-init.sh", "privileged": true, "containerEnv": { "DOCKER_BUILDKIT": "1" }, "customizations": { "vscode": { "extensions": [ "ms-azuretools.vscode-docker" ] } }, "mounts": [ { "source": "dind-var-lib-docker", "target": "/var/lib/docker", "type": "volume" } ] }