new testarena
This commit is contained in:
28
asf-cloud-server/testarena_1/start.bat
Normal file
28
asf-cloud-server/testarena_1/start.bat
Normal file
@@ -0,0 +1,28 @@
|
||||
@echo off
|
||||
echo Starting ASF TestArena...
|
||||
echo.
|
||||
|
||||
REM Check if Docker is running
|
||||
docker info >nul 2>&1
|
||||
if errorlevel 1 (
|
||||
echo ERROR: Docker is not running. Please start Docker Desktop first.
|
||||
pause
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
echo Building and starting containers...
|
||||
docker-compose up -d --build
|
||||
|
||||
echo.
|
||||
echo ASF TestArena is starting up...
|
||||
echo.
|
||||
echo Default credentials:
|
||||
echo Username: admin
|
||||
echo Password: admin123
|
||||
echo.
|
||||
echo Please change the default password after first login!
|
||||
echo.
|
||||
echo Access the application at: http://localhost:5000
|
||||
echo Or at your configured domain: https://testarena.nabd-co.com
|
||||
echo.
|
||||
pause
|
||||
Reference in New Issue
Block a user