diff options
Diffstat (limited to 'src/docker-from-docker')
-rw-r--r-- | src/docker-from-docker/devcontainer-feature.json | 4 | ||||
-rwxr-xr-x | src/docker-from-docker/install.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/docker-from-docker/devcontainer-feature.json b/src/docker-from-docker/devcontainer-feature.json index aeaeba7..6bf3929 100644 --- a/src/docker-from-docker/devcontainer-feature.json +++ b/src/docker-from-docker/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "docker-from-docker", - "version": "1.0.0", + "version": "1.0.1", "name": "Docker (Docker-from-Docker)", "descripton": "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": { @@ -19,7 +19,7 @@ "default": true, "description": "Install OSS Moby build instead of Docker CE" }, - "docker_dash_compose_version": { + "dockerDashComposeVersion": { "type": "string", "enum": [ "v1", diff --git a/src/docker-from-docker/install.sh b/src/docker-from-docker/install.sh index 88ad52f..6e45865 100755 --- a/src/docker-from-docker/install.sh +++ b/src/docker-from-docker/install.sh @@ -9,7 +9,7 @@ DOCKER_VERSION=${VERSION:-"latest"} USE_MOBY=${MOBY:-"true"} -DOCKER_DASH_COMPOSE_VERSION=${DOCKER_DASH_COMPOSE_VERSION:-"v1"} # v1 or v2 +DOCKER_DASH_COMPOSE_VERSION=${DOCKERDASHCOMPOSEVERSION:-"v1"} # v1 or v2 ENABLE_NONROOT_DOCKER=${ENABLE_NONROOT_DOCKER:-"true"} SOURCE_SOCKET=${SOURCE_SOCKET:-"/var/run/docker-host.sock"} |