Am I looking in the wrong db? Here's a sample Pri...
# orm-help
k
Am I looking in the wrong db? Here's a sample Prisma config on Docker-Compose:
Copy code
prisma:
        image: prismagraphql/prisma:1.34
        container_name: prisma
        restart: always
        ports: 
            - 4466:4466
        environment:
          SLOW_QUERIES_LOGGING: 'true'
          SLOW_QUERIES_LOGGING_THRESHOLD: '0'
          PRISMA_CONFIG: | 
            managementApiSecret: CANTH@CKTH1S
            port: 4466
            databases:
              default:
                database: coolestdb
                connector: postgres
                host: postgres
                port: 5432
                user: coolestdb
                password: coolestpassword
                connectionLimit: 3
        networks:
            - internal
            - web
r
Hey @Kennedy Otieno 👋 Where would this
postgres
be defined that you have added as the host?