Using host.docker.internal
I have a docker container that wants to use PostGresDB on the host machine in port 5432. How do I connect to the host PostGres server?
Answer: Use host.docker.internal in the connection string
POSTGRES_PRISMA_URL=postgresql://postgres:postgres@host.d...
vijayt.hashnode.dev1 min read