Hey, I have a function that once a new data point is inserted, the db triggers and calls an URL. previously that was hardcoded, but I tried to load it from the DB itself (so I can do local/dev/prod - before only the hardcoded url was called).
Anyway, using the local URL I can not get it to call localhost:3000/myWebhook.
Simplifying the whole thing, I've connected to the supbase docker image and tried to curl my running server without success.
curl localhost:3000/
curl 172.18.0.0.1:3000/ (This is the supabase network gateway according to docker network ls and docker network inspect <relevant docker network>
curl host.docker.internal:3000/
Basically they all time out. It would probably work with my dev server - I can curl it, but I'm reluctant to deploy something that I can't run locally, even on dev.