Files
podman/pkg/machine/e2e/scripts/fake_compose.bat
Arthur Sengileyev ededb4c3c4 Improve platform specific URL handling in podman compose for machines
Use filepath utility instead of generic string replace to convert path
on Windows. This also separates OS specific implementations to separate
compilation sources and removes redundant check for virtualization
provider on Windows platform.

Signed-off-by: Arthur Sengileyev <arthur.sengileyev@gmail.com>
2024-12-02 20:46:51 +02:00

19 lines
222 B
Batchfile

@ECHO off
IF "%1"=="env" (
goto procenv
)
echo arguments: %*
exit
:procenv
if NOT "%DOCKER_HOST%" == "" (
echo %DOCKER_HOST%
)
if NOT "%DOCKER_BUILDKIT%" == "" (
echo %DOCKER_BUILDKIT%
)