-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.bat
More file actions
37 lines (34 loc) · 954 Bytes
/
Copy pathrun.bat
File metadata and controls
37 lines (34 loc) · 954 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
26
27
28
29
30
31
32
33
34
35
36
37
@echo off
echo ==========================================
echo Starting All Docker Containers
echo ==========================================
echo.
docker-compose up -d
if errorlevel 1 (
echo.
echo ==========================================
echo ERROR: Failed to start containers
echo ==========================================
exit /b 1
)
echo.
echo ==========================================
echo All containers started successfully!
echo ==========================================
echo.
echo Container Status:
docker-compose ps
echo.
echo Access Points:
echo Frontend: Open frontend/index.html in browser
echo Javalin API: http://localhost:8080
echo Node.js API: http://localhost:3000
echo ActiveMQ Console: http://localhost:8161/admin
echo (user: admin, pass: admin123)
echo.
echo Monitoring:
echo docker-compose logs -f
echo.
echo To stop:
echo stop.bat
echo.