Skip to content

Commit 2c22abe

Browse files
committed
Fixed a docker-in-docker build failure due to moby-cli lack in Debian trixie.
The existing mcr.microsoft.com/devcontainers/base:debian tag always points to the latest release (currently trixie), which could lead to unpredictable compatibility issues. - The :debian tag tracks the latest testing version. - Some tools/packages may be removed or changed in the latest version. (For example, the removal of moby-cli in Debian trixie caused the docker-in-docker feature to fail.) - Fixed to an explicit version (bookworm) to maintain a stable development environment.
1 parent 2b40dc2 commit 2c22abe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.devcontainer/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.8"
22

33
services:
44
workspace:
5-
image: mcr.microsoft.com/devcontainers/base:debian
5+
image: mcr.microsoft.com/devcontainers/base:bookworm
66
privileged: true
77
volumes:
88
- ..:/workspaces/quick-command-buttons:delegated

0 commit comments

Comments
 (0)