what's the relationship between local docker and p...
# prisma-whats-new
b
what's the relationship between local docker and prisma CLI supposed to be? I noticed that it just sorta spawns some containers but doesn't have a compose file or anything like that.
s
Hi Chris! The CLI helps you with running a local development cluster. It’s using docker-compose internally but so far doesn’t expose the docker-compose.yml
Any concrete thoughts about this setup? @tim2 probably can answer a bit more in detail.
t
Thanks for asking @biscarch, you can find the docker-compose file used in the cli here: https://github.com/graphcool/prisma/blob/master/cli/packages/prisma-cli-core/src/commands/local/docker/docker-compose.yml
b
cool, as for concrete thoughts, it would be nice to see output equivalent to
msql db running
, etc when running the project. I miss having
docker-compose ps
type stuff. How would I make sure the version I'm running in prod and dev are the same, etc.
prisma local start
just took
168.9s
which seems really slow but isn't the worst thing. I'm basically investigating the possibility of developing a new adapter (for say google cloud datastore) to fill a use case I have where my kafka data is sent to datastore and then I query it out of datastore (which I'd like to be doing with graphql)