From 1cc87e1836a8c95f028a83eb1dab8be70bf1709b Mon Sep 17 00:00:00 2001 From: DCCONSTRUCTIONS Date: Wed, 26 Aug 2026 18:29:33 +0300 Subject: [PATCH] fix(perception): isolate Worker Docker credentials --- .../perception/worker/Invoke-M49T1GSeg3DQualification.ps1 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/experiments/perception/worker/Invoke-M49T1GSeg3DQualification.ps1 b/experiments/perception/worker/Invoke-M49T1GSeg3DQualification.ps1 index dad0738..5db2e54 100644 --- a/experiments/perception/worker/Invoke-M49T1GSeg3DQualification.ps1 +++ b/experiments/perception/worker/Invoke-M49T1GSeg3DQualification.ps1 @@ -47,6 +47,10 @@ $runOutput = Join-Path $output $RunId if (Test-Path -LiteralPath $runOutput) { throw "M49 T1 output already exists" } $null = New-Item -ItemType Directory -Path $runOutput $runOutput = Resolve-DDirectory $runOutput "M49 T1 run output" $false +$dockerConfig = Join-Path $runOutput "docker-config" +$null = New-Item -ItemType Directory -Path $dockerConfig +'{"auths":{}}' | Set-Content -LiteralPath (Join-Path $dockerConfig "config.json") -Encoding ascii +$env:DOCKER_CONFIG = $dockerConfig $os = Get-CimInstance Win32_OperatingSystem $freeMemoryGiB = [double]$os.FreePhysicalMemory / 1MB