-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.bat
More file actions
44 lines (38 loc) · 750 Bytes
/
run.bat
File metadata and controls
44 lines (38 loc) · 750 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
38
39
40
41
42
43
44
echo off
cls
echo ****************************************
echo Running Kafka Services of SpringBoot
echo ****************************************
echo,
echo,
cd Spring
docker compose -f docker-compose.yaml up -d
echo,
echo,
@REM echo ***************************
@REM echo Running Airflow Services
@REM echo ***************************
@REM echo,
@REM echo,
@REM cd ../Airflow
@REM docker compose -f docker-compose.yaml up -d
@REM echo,
@REM echo,
echo **************************
echo Service Running Status
echo **************************
echo,
echo,
docker ps
echo,
echo,
echo ******************************
echo Running SpringBoot Service
echo ******************************
echo,
echo,
mvnw.cmd spring-boot:run
echo,
echo,
cd..
pause