#!/bin/bash # Exit immediately if a command exits with a non-zero status. set -e echo "Pulling latest Docker Compose images..." docker compose pull echo "Starting Supabase services..." # Run docker compose up in the foreground exec docker compose up