diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2023-09-11 21:32:53 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-11 21:32:53 +0300 |
commit | a771e8cb426961dadb6312d857ea272b711714b3 (patch) | |
tree | df65e16537b2bd1d55accff87c98f404a8d457a2 | |
parent | 8ad7c749b3133d5163f6bdf35cab5cf9d0d9f3c9 (diff) |
[Docker-in-docker] Support bookworm (#661)feature_docker-in-docker_2.5.0
* [Docker-in-docker] Support bookworm
* Update devcontainer-feature.json
-rw-r--r-- | src/docker-in-docker/devcontainer-feature.json | 2 | ||||
-rwxr-xr-x | src/docker-in-docker/install.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/docker-in-docker/devcontainer-feature.json b/src/docker-in-docker/devcontainer-feature.json index edfaa1f..2feea7d 100644 --- a/src/docker-in-docker/devcontainer-feature.json +++ b/src/docker-in-docker/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "docker-in-docker", - "version": "2.4.0", + "version": "2.5.0", "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.", diff --git a/src/docker-in-docker/install.sh b/src/docker-in-docker/install.sh index a0d4a94..39d1b77 100755 --- a/src/docker-in-docker/install.sh +++ b/src/docker-in-docker/install.sh @@ -16,8 +16,8 @@ DOCKER_DEFAULT_ADDRESS_POOL="${DOCKERDEFAULTADDRESSPOOL}" USERNAME="${USERNAME:-"${_REMOTE_USER:-"automatic"}"}" INSTALL_DOCKER_BUILDX="${INSTALLDOCKERBUILDX:-"true"}" MICROSOFT_GPG_KEYS_URI="https://packages.microsoft.com/keys/microsoft.asc" -DOCKER_MOBY_ARCHIVE_VERSION_CODENAMES="buster bullseye bionic focal jammy" -DOCKER_LICENSED_ARCHIVE_VERSION_CODENAMES="buster bullseye bionic focal hirsute impish jammy" +DOCKER_MOBY_ARCHIVE_VERSION_CODENAMES="bookworm buster bullseye bionic focal jammy" +DOCKER_LICENSED_ARCHIVE_VERSION_CODENAMES="bookworm buster bullseye bionic focal hirsute impish jammy" # Default: Exit on any failure. set -e |