fix(devcontainer): disable moby for Docker-in-Docker on trixie - #1710
Merged
jaredwray merged 1 commit intoAug 28, 2026
Merged
Conversation
jaredwray
added a commit
that referenced
this pull request
Aug 28, 2026
* feat(cacheable): support tag invalidation in getOrSet Add tags to GetOrSetFunctionOptions and forward them to set when a value is computed on a cache miss. Add regression coverage and update the documentation with tag-based getOrSet usage. * cacheable - fix stale secondary backfill race * cacheable - complete tags for getOrSet Add controller cleanup coverage and documentation, and make the devcontainer bootstrap support Docker, user-writable Corepack shims, and NVM's .nvmrc behavior. * fix(devcontainer): disable moby for docker-in-docker on trixie (#1710) * test(cacheable): cover non-blocking secondary miss * test(cacheable): cover discarded batched backfills --------- Co-authored-by: Jared Wray <me@jaredwray.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR fixes Codespaces/devcontainer creation failures caused by the Docker-in-Docker feature defaulting to
mobyon Debian trixie-based images.Changes
.devcontainer/devcontainer.json"ghcr.io/devcontainers/features/docker-in-docker:4"option"moby": falseWhy
Container creation failed with:
The 'moby' option is not supported on debian 'trixie' ...Setting
mobytofalseuses a supported install path and prevents the startup failure.Validation
.devcontainer/devcontainer.jsononly.ef83b94