File size: 252 Bytes
095be40 |
1 2 3 4 5 6 7 8 9 10 11 |
#!/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 |