8383 SPRING_DATASOURCE_USERNAME : openaev
8484 SPRING_DATASOURCE_PASSWORD : openaev
8585 MINIO_ENDPOINT : localhost
86- MINIO_PORT : 9000
86+ MINIO_PORT : 11000
8787 ENGINE_URL : http://localhost:9200
8888 OPENBAS_RABBITMQ_HOSTNAME : localhost
8989 steps :
@@ -99,17 +99,17 @@ jobs:
9999 - name : Start MinIO
100100 run : |
101101 docker run -d --name minio \
102- -p 9000 :9000 \
102+ -p 11000 :9000 \
103103 -e MINIO_ROOT_USER=minioadmin \
104104 -e MINIO_ROOT_PASSWORD=minioadmin \
105105 minio/minio:RELEASE.2025-06-13T11-33-47Z server /data
106106
107107 echo "⏳ Waiting for MinIO..."
108108 for i in $(seq 1 30); do
109- curl -sf http://localhost:9000 /minio/health/live && break
109+ curl -sf http://localhost:11000 /minio/health/live && break
110110 sleep 1
111111 done
112- curl -sf http://localhost:9000 /minio/health/live || { echo "❌ MinIO failed to start"; exit 1; }
112+ curl -sf http://localhost:11000 /minio/health/live || { echo "❌ MinIO failed to start"; exit 1; }
113113 echo "✅ MinIO ready"
114114
115115 - name : Build all modules (skip tests)
@@ -172,7 +172,7 @@ jobs:
172172 SPRING_DATASOURCE_USERNAME : openaev
173173 SPRING_DATASOURCE_PASSWORD : openaev
174174 MINIO_ENDPOINT : localhost
175- MINIO_PORT : 9000
175+ MINIO_PORT : 11000
176176 ENGINE_URL : http://localhost:9200
177177 ENGINE_ENGINESELECTOR : opensearch
178178 OPENBAS_RABBITMQ_HOSTNAME : localhost
@@ -189,17 +189,17 @@ jobs:
189189 - name : Start MinIO
190190 run : |
191191 docker run -d --name minio \
192- -p 9000 :9000 \
192+ -p 11000 :9000 \
193193 -e MINIO_ROOT_USER=minioadmin \
194194 -e MINIO_ROOT_PASSWORD=minioadmin \
195195 minio/minio:RELEASE.2025-06-13T11-33-47Z server /data
196196
197197 echo "⏳ Waiting for MinIO..."
198198 for i in $(seq 1 30); do
199- curl -sf http://localhost:9000 /minio/health/live && break
199+ curl -sf http://localhost:11000 /minio/health/live && break
200200 sleep 1
201201 done
202- curl -sf http://localhost:9000 /minio/health/live || { echo "❌ MinIO failed to start"; exit 1; }
202+ curl -sf http://localhost:11000 /minio/health/live || { echo "❌ MinIO failed to start"; exit 1; }
203203 echo "✅ MinIO ready"
204204
205205 - name : Build all modules (skip tests)
@@ -278,7 +278,7 @@ jobs:
278278 SPRING_DATASOURCE_USERNAME : openaev
279279 SPRING_DATASOURCE_PASSWORD : openaev
280280 MINIO_ENDPOINT : localhost
281- MINIO_PORT : 9000
281+ MINIO_PORT : 11000
282282 MINIO_ACCESS_KEY : minioadmin
283283 MINIO_ACCESS_SECRET : minioadmin
284284 ENGINE_URL : http://localhost:9200
@@ -319,15 +319,15 @@ jobs:
319319 - name : Start MinIO
320320 run : |
321321 docker run -d --name minio \
322- -p 9000 :9000 \
322+ -p 11000 :9000 \
323323 -e MINIO_ROOT_USER=minioadmin \
324324 -e MINIO_ROOT_PASSWORD=minioadmin \
325325 minio/minio:RELEASE.2025-06-13T11-33-47Z server /data
326326 for i in $(seq 1 30); do
327- curl -sf http://localhost:9000 /minio/health/live && break
327+ curl -sf http://localhost:11000 /minio/health/live && break
328328 sleep 1
329329 done
330- curl -sf http://localhost:9000 /minio/health/live || { echo "❌ MinIO failed"; exit 1; }
330+ curl -sf http://localhost:11000 /minio/health/live || { echo "❌ MinIO failed"; exit 1; }
331331
332332 - name : Set up Java 21
333333 uses : actions/setup-java@v5
@@ -421,7 +421,7 @@ jobs:
421421 echo "── Service connectivity ──"
422422 echo -n " PostgreSQL (5432): "; curl -sf http://localhost:5432 2>&1 | head -1 || pg_isready -h localhost -p 5432 2>&1 || echo "unreachable"
423423 echo -n " Elasticsearch/OpenSearch (9200): "; curl -sf http://localhost:9200 | head -1 || echo "unreachable"
424- echo -n " MinIO (9000 ): "; curl -sf http://localhost:9000 /minio/health/live && echo "ok" || echo "unreachable"
424+ echo -n " MinIO (11000 ): "; curl -sf http://localhost:11000 /minio/health/live && echo "ok" || echo "unreachable"
425425 echo -n " RabbitMQ (5672): "; nc -z localhost 5672 2>&1 && echo "ok" || echo "unreachable"
426426
427427 echo ""
@@ -515,7 +515,7 @@ jobs:
515515 SPRING_DATASOURCE_USERNAME : openaev
516516 SPRING_DATASOURCE_PASSWORD : openaev
517517 MINIO_ENDPOINT : localhost
518- MINIO_PORT : 9000
518+ MINIO_PORT : 11000
519519 MINIO_ACCESS_KEY : minioadmin
520520 MINIO_ACCESS_SECRET : minioadmin
521521 ENGINE_URL : http://localhost:9200
@@ -554,15 +554,15 @@ jobs:
554554 - name : Start MinIO
555555 run : |
556556 docker run -d --name minio \
557- -p 9000 :9000 \
557+ -p 11000 :9000 \
558558 -e MINIO_ROOT_USER=minioadmin \
559559 -e MINIO_ROOT_PASSWORD=minioadmin \
560560 minio/minio:RELEASE.2025-06-13T11-33-47Z server /data
561561 for i in $(seq 1 30); do
562- curl -sf http://localhost:9000 /minio/health/live && break
562+ curl -sf http://localhost:11000 /minio/health/live && break
563563 sleep 1
564564 done
565- curl -sf http://localhost:9000 /minio/health/live || { echo "❌ MinIO failed"; exit 1; }
565+ curl -sf http://localhost:11000 /minio/health/live || { echo "❌ MinIO failed"; exit 1; }
566566
567567 - name : Set up Java 21
568568 uses : actions/setup-java@v5
@@ -655,7 +655,7 @@ jobs:
655655 echo "── Service connectivity ──"
656656 echo -n " PostgreSQL (5432): "; curl -sf http://localhost:5432 2>&1 | head -1 || pg_isready -h localhost -p 5432 2>&1 || echo "unreachable"
657657 echo -n " Elasticsearch/OpenSearch (9200): "; curl -sf http://localhost:9200 | head -1 || echo "unreachable"
658- echo -n " MinIO (9000 ): "; curl -sf http://localhost:9000 /minio/health/live && echo "ok" || echo "unreachable"
658+ echo -n " MinIO (11000 ): "; curl -sf http://localhost:11000 /minio/health/live && echo "ok" || echo "unreachable"
659659 echo -n " RabbitMQ (5672): "; nc -z localhost 5672 2>&1 && echo "ok" || echo "unreachable"
660660
661661 echo ""
0 commit comments