Fix migrate.sh auth failure by overriding built-in script
All checks were successful
Build and Push Docker Image / build (push) Successful in 2m9s

The Supabase postgres image includes a migrate.sh that tries to connect
as supabase_admin without proper credentials. Override it with an empty
script since migrations are handled by init.sql.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-26 17:02:07 +01:00
parent f81da356cc
commit 0053fa2b5e
4 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
#!/bin/bash
# Override the default Supabase migrate.sh
# Our migrations are handled via init.sql which runs as postgres user
echo "Skipping built-in migrate.sh - migrations handled by init.sql"
exit 0