Hey, I'm following a GraphQL tutorial on Udemy tha...
# orm-help
w
Hey, I'm following a GraphQL tutorial on Udemy that calls for the use of Prisma's Docker image along with a Heroku Postgres database. I've verified the database is working correctly from a couple different db IDEs, but the Docker container can't contact the db, and the
prisma deploy
fails because it can't find the Docker container running. Anyone else having trouble with the Docker container? I've also run
docker ps
and verified that the image is running correctly and on the correct port. The instructions said to use Docker Toolbox in Windows, which is what I'm doing, but I'm seeing in the Docker documentation lots of references to "don't use this" and to use Docker Desktop instead. Is this Prisma's advice as well?
Ok, answer was don't use Docker Toolbox. There's problems with using a Linux container in Windows, because the
prisma deploy
can't contact
localhost:4466
in the container.