fleet-memory/docker/services/build-all.sh
Nicolò Boschi 3e72984cd2 chunks
2025-11-29 16:34:13 +01:00

24 lines
596 B
Bash
Executable file

#!/bin/bash
set -e
echo "Building Hindsight service images..."
cd "$(dirname "$0")/../.."
echo ""
echo "Building hindsight-api..."
docker build -f docker/services/api.Dockerfile -t hindsight/api:latest .
echo ""
echo "Building hindsight-control-plane..."
docker build -f docker/services/control-plane.Dockerfile -t hindsight/control-plane:latest .
echo ""
echo "✅ All service images built successfully!"
echo ""
echo "Available images:"
echo " - hindsight/api:latest"
echo " - hindsight/control-plane:latest"
echo ""
echo "To start all services:"
echo " cd docker && docker-compose up"