How do I start prisma 1.7 locally? `prisma local s...
# orm-help
d
How do I start prisma 1.7 locally?
prisma local start
is stuck in restart loop
n
can you share
docker-compose.yml
?
c
@danielrasmuson I was running into the same issue attempting to use
prisma local start
, it looks like this method of starting a local prisma environment may be deprecated
>= 1.7
(see the warning on https://www.prisma.io/docs/tutorials/cluster-deployment/local-(docker)-meemaesh3k). It looks like, with 1.7, we're supposed to use
docker-compose
(see https://www.prisma.io/docs/reference/prisma-servers-and-dbs/prisma-servers/docker-aira9zama5). You can copy the
docker-compose.yml
off that doc. Also, when jumpstarting a new project, observe that
prisma init
generates that docker-compose file for you too.
👌 1