```version: '3' services: prisma: image: pri...
# orm-help
a
Copy code
version: '3'
services:
  prisma:
    image: prismagraphql/prisma:1.34
    restart: always
    ports:
    - "4466:4466"
    environment:
      PRISMA_CONFIG: |
        port: 4466
        # uncomment the next line and provide the env var PRISMA_MANAGEMENT_API_SECRET=my-secret to activate cluster security
        managementApiSecret: my-secret
        databases:
          default:
            connector: mongo
            schema: akshat
            uri: '<mongodb://host.docker.internal:27017>'
r
Hey @Akshat Jaitly 👋 Could you share the output of
docker-compose logs
?
a
Hey thanks for reply @Ryan But how should I able to do it I am new at this.this is my console output
r
Just run
docker-compose logs
in the terminal and it should give the output.
a
hey this is the file
r
I think you need to remove
schema
from there as schema should only appear in postgres.
a
hey now error is reduced to this
i am able to connect to databse running locallu
*locally with mongodbCompass
r
@Akshat Jaitly Are you using the Docker for Windows setup or the Docker toolbox?
a
i used docker toolbox
I had issue with docker itself as it was not able to resolve host.docker.internal
I reconfigured docker Now its working smoothly...
Thanx for help @Ryan ..For helping me pointing out that issue was with docker itself..Thanx So much......
🙌 1
💯 1