Private/DClaudeConstants.ps1
|
$script:DClaudeVersions = @{ NodeJS = '22.14.0' MinGit = '2.47.1.windows.2' DockerCLI = '27.5.1' DockerCompose = '2.33.1' DockerBuildX = '0.21.1' } $script:DClaudeImages = @{ ProvisionLinux = 'debian:bookworm-slim' ProvisionWindows = 'mcr.microsoft.com/windows/servercore:ltsc2022' CheckLinux = 'alpine' CheckWindows = 'mcr.microsoft.com/windows/nanoserver:ltsc2022' } # Docker volume label that records the exact @anthropic-ai/claude-code version baked into # a runtime volume. Written by New-RuntimeVolume at creation time (labels are immutable # after creation) and read by Get-RuntimeVolumeClaudeVersion. Defined once so the writer # and reader cannot drift on the key name. $script:DClaudeRuntimeVersionLabel = 'dclaude.cc-version' |