-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun-prod.bat
More file actions
25 lines (22 loc) · 800 Bytes
/
Copy pathrun-prod.bat
File metadata and controls
25 lines (22 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@echo off
echo =======================================================
echo Starting TaskSphere Production Mode (Docker Compose)...
echo =======================================================
echo.
echo [1/2] Building and spinning up containers in background...
docker-compose up --build -d
echo.
echo [2/2] Waiting for web application service to boot up (10s)...
timeout /t 10 /nobreak > NUL
echo.
echo =======================================================
echo Services booted. Opening production instance...
echo Web UI: http://localhost:5000
echo Health Status: http://localhost:5000/health
echo =======================================================
start http://localhost:5000
echo.
echo Containers are running in the background.
echo To stop them, run: docker-compose down
echo.
pause