diff options
Diffstat (limited to 'src/docker-from-docker/devcontainer-feature.json')
-rw-r--r-- | src/docker-from-docker/devcontainer-feature.json | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/src/docker-from-docker/devcontainer-feature.json b/src/docker-from-docker/devcontainer-feature.json deleted file mode 100644 index 9948a62..0000000 --- a/src/docker-from-docker/devcontainer-feature.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "id": "docker-from-docker", - "version": "1.0.8", - "name": "Docker (Docker-from-Docker)", - "documentationURL": "https://github.com/devcontainers/features/tree/main/src/docker-from-docker", - "description": "Re-use the host docker socket, adding the Docker CLI to a container. Feature invokes a script to enable using a forwarded Docker socket within a container to run Docker commands.", - "options": { - "version": { - "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" - }, - "dockerDashComposeVersion": { - "type": "string", - "enum": [ - "v1", - "v2" - ], - "default": "v1", - "description": "Compose version to use for docker-compose (v1 or v2)" - } - }, - "entrypoint": "/usr/local/share/docker-init.sh", - "containerEnv": { - "DOCKER_BUILDKIT": "1" - }, - "customizations": { - "vscode": { - "extensions": [ - "ms-azuretools.vscode-docker" - ] - } - }, - "mounts": [ - { - "source": "/var/run/docker.sock", - "target": "/var/run/docker-host.sock", - "type": "bind" - } - ], - "installsAfter": [ - "ghcr.io/devcontainers/features/common-utils" - ] -} |