Skip to content

Commit d2c3762

Browse files
committed
hotfix: wrap self-hosting logic
1 parent 61c75e3 commit d2c3762

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docker/docker-entrypoint.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ _main() {
7272
EOM
7373
fi
7474

75-
pg_sync_password "$@"
75+
if [ -n "${SUPABASE_SELF_HOSTING:-}" ]; then
76+
pg_sync_password "$@"
77+
fi
7678
fi
7779

7880
exec "$@"

0 commit comments

Comments
 (0)