-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.bat
More file actions
27 lines (23 loc) · 568 Bytes
/
start.bat
File metadata and controls
27 lines (23 loc) · 568 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
@echo off
echo Minecraft FluxCraft - Starting Environment
echo =============================================
echo.
echo Starting Docker services...
docker compose up -d
echo.
echo Waiting for services to start...
timeout /t 10 /nobreak >nul
echo.
echo Checking service status...
docker compose ps
echo.
echo =============================================
echo Environment started successfully!
echo.
echo Minecraft Server: localhost:25565
echo MQTT Broker: localhost:1883
echo.
echo To view logs: docker compose logs -f
echo To stop: dcker compose down
echo.
pause