diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2023-01-04 22:52:05 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 22:52:05 +0300 |
commit | eef35a4399a17546051fc5597440d38c36022f06 (patch) | |
tree | cdcd9e78f9403a39219e3129871e373af1b6909d | |
parent | 6c76a7b4883a2639cedf805ed786b5b84100841d (diff) |
Rename "docker-from-docker" to "docker-outside-of-docker" (#373)
* Rename to "docker-outside-of-docker"
* rename test folder
-rw-r--r-- | .github/workflows/test-all.yaml | 4 | ||||
-rw-r--r-- | .github/workflows/test-pr.yaml | 2 | ||||
-rw-r--r-- | src/docker-outside-of-docker/NOTES.md (renamed from src/docker-from-docker/NOTES.md) | 0 | ||||
-rw-r--r-- | src/docker-outside-of-docker/README.md (renamed from src/docker-from-docker/README.md) | 0 | ||||
-rw-r--r-- | src/docker-outside-of-docker/devcontainer-feature.json (renamed from src/docker-from-docker/devcontainer-feature.json) | 11 | ||||
-rwxr-xr-x | src/docker-outside-of-docker/install.sh (renamed from src/docker-from-docker/install.sh) | 0 | ||||
-rw-r--r-- | test/docker-outside-of-docker/docker_init.sh (renamed from test/docker-from-docker/docker_init.sh) | 0 | ||||
-rw-r--r-- | test/docker-outside-of-docker/scenarios.json (renamed from test/docker-from-docker/scenarios.json) | 2 | ||||
-rwxr-xr-x | test/docker-outside-of-docker/test.sh (renamed from test/docker-from-docker/test.sh) | 0 |
9 files changed, 11 insertions, 8 deletions
diff --git a/.github/workflows/test-all.yaml b/.github/workflows/test-all.yaml index cf876a4..d2238a7 100644 --- a/.github/workflows/test-all.yaml +++ b/.github/workflows/test-all.yaml @@ -18,7 +18,7 @@ jobs: "common-utils", "conda", "desktop-lite", - "docker-from-docker", + "docker-outside-of-docker", "docker-in-docker", "dotnet", "git", @@ -71,7 +71,7 @@ jobs: "common-utils", "conda", "desktop-lite", - "docker-from-docker", + "docker-outside-of-docker", "docker-in-docker", "dotnet", "git", diff --git a/.github/workflows/test-pr.yaml b/.github/workflows/test-pr.yaml index f89923d..69b3942 100644 --- a/.github/workflows/test-pr.yaml +++ b/.github/workflows/test-pr.yaml @@ -18,7 +18,7 @@ jobs: common-utils: ./**/common-utils/** conda: ./**/conda/** desktop-lite: ./**/desktop-lite/** - docker-from-docker: ./**/docker-from-docker/** + docker-outside-of-docker: ./**/docker-outside-of-docker/** docker-in-docker: ./**/docker-in-docker/** dotnet: ./**/dotnet/** git: ./**/git/** diff --git a/src/docker-from-docker/NOTES.md b/src/docker-outside-of-docker/NOTES.md index fede053..fede053 100644 --- a/src/docker-from-docker/NOTES.md +++ b/src/docker-outside-of-docker/NOTES.md diff --git a/src/docker-from-docker/README.md b/src/docker-outside-of-docker/README.md index e2ddb84..e2ddb84 100644 --- a/src/docker-from-docker/README.md +++ b/src/docker-outside-of-docker/README.md diff --git a/src/docker-from-docker/devcontainer-feature.json b/src/docker-outside-of-docker/devcontainer-feature.json index 9948a62..69aa2f4 100644 --- a/src/docker-from-docker/devcontainer-feature.json +++ b/src/docker-outside-of-docker/devcontainer-feature.json @@ -1,8 +1,8 @@ { - "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", + "id": "docker-outside-of-docker", + "version": "1.0.9", + "name": "Docker (docker-outside-of-docker)", + "documentationURL": "https://github.com/devcontainers/features/tree/main/src/docker-outside-of-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": { @@ -50,5 +50,8 @@ ], "installsAfter": [ "ghcr.io/devcontainers/features/common-utils" + ], + "legacyIds": [ + "docker-from-docker" ] } diff --git a/src/docker-from-docker/install.sh b/src/docker-outside-of-docker/install.sh index 1307bfc..1307bfc 100755 --- a/src/docker-from-docker/install.sh +++ b/src/docker-outside-of-docker/install.sh diff --git a/test/docker-from-docker/docker_init.sh b/test/docker-outside-of-docker/docker_init.sh index 2164921..2164921 100644 --- a/test/docker-from-docker/docker_init.sh +++ b/test/docker-outside-of-docker/docker_init.sh diff --git a/test/docker-from-docker/scenarios.json b/test/docker-outside-of-docker/scenarios.json index 196e00b..804b522 100644 --- a/test/docker-from-docker/scenarios.json +++ b/test/docker-outside-of-docker/scenarios.json @@ -3,7 +3,7 @@ "image": "mcr.microsoft.com/devcontainers/base", "remoteUser": "vscode", "features": { - "docker-from-docker": { + "docker-outside-of-docker": { "version": "latest" } } diff --git a/test/docker-from-docker/test.sh b/test/docker-outside-of-docker/test.sh index 517737a..517737a 100755 --- a/test/docker-from-docker/test.sh +++ b/test/docker-outside-of-docker/test.sh |