supabase / entrypoint.sh
zyxciss's picture
Create entrypoint.sh
095be40 verified
raw
history blame contribute delete
252 Bytes
#!/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