Add local docker cmd shim for Windows

This commit is contained in:
2026-05-03 17:28:24 +09:00
parent 74715c0546
commit 3abb6f81bb

13
docker.cmd Normal file
View File

@@ -0,0 +1,13 @@
@echo off
setlocal
set "DOCKER_EXE=C:\Program Files\Docker\Docker\resources\bin\docker.exe"
if exist "%DOCKER_EXE%" (
"%DOCKER_EXE%" %*
exit /b %ERRORLEVEL%
)
echo Docker executable not found: "%DOCKER_EXE%"
echo Install Docker Desktop or update this shim path.
exit /b 1