Files
v2-Docker/Start.bat
Claude Project Manager 0d7d888502 Initial commit
2025-07-05 17:51:16 +02:00

36 Zeilen
763 B
Batchfile

@echo off
echo Starting v2-Docker System...
echo.
cd /d "%~dp0"
echo Checking Docker status...
docker version >nul 2>&1
if %errorlevel% neq 0 (
echo ERROR: Docker is not running or not installed!
echo Please start Docker Desktop first.
pause
exit /b 1
)
echo Starting services...
docker-compose -f v2/docker-compose.yaml up -d
echo.
echo Waiting for services to start...
timeout /t 10 /nobreak >nul
echo.
echo Checking service status...
docker-compose -f v2/docker-compose.yaml ps
echo.
echo ========================================
echo Services started successfully!
echo.
echo Admin Panel: http://localhost
echo License API: http://localhost/api
echo ========================================
echo.
echo Press any key to exit...
pause >nul