add files infra docker service for data platform

This commit is contained in:
jigoong
2026-02-16 17:21:59 +07:00
parent ce75555958
commit 300ed08d9e
46 changed files with 2442 additions and 14 deletions

31
stop-all.sh Normal file
View File

@@ -0,0 +1,31 @@
#!/bin/bash
set -e
echo "=== Stopping Sriphat Data Platform ==="
echo ""
cd "$(dirname "$0")"
echo "[1/4] Stopping Analytics..."
cd 06-analytics
docker compose down
cd ..
echo "[2/4] Stopping Ingestion..."
cd 04-ingestion
docker compose down
cd ..
echo "[3/4] Stopping API Service..."
cd 03-apiservice
docker compose down
cd ..
echo "[4/4] Stopping Infrastructure..."
cd 01-infra
docker compose down
cd ..
echo ""
echo "=== All services stopped ==="