15 lines
237 B
Batchfile
15 lines
237 B
Batchfile
@echo off
|
|
setlocal
|
|
cd /d "%~dp0"
|
|
|
|
where docker >nul 2>&1
|
|
if errorlevel 1 (
|
|
echo Docker not found. Install Docker Desktop.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo Calculator: http://localhost:8888
|
|
start "" "http://localhost:8888"
|
|
docker compose up
|