Gaetan BUSATO

Results 6 comments of Gaetan BUSATO

This configuration should work: ``` version: '3.1' services: mongo: image: mongo restart: always environment: MONGO_INITDB_ROOT_USERNAME: root MONGO_INITDB_ROOT_PASSWORD: example mongo-express: image: mongo-express restart: always ports: - 8081:8081 environment: ME_CONFIG_MONGODB_URL: "mongodb://root:example@mongo:27017/" ME_CONFIG_MONGODB_ADMINUSERNAME:...

As said previously, this is an example of working configuration : ``` version: '3.1' services: mongo: image: mongo restart: always environment: MONGO_INITDB_ROOT_USERNAME: root MONGO_INITDB_ROOT_PASSWORD: example mongo-express: image: mongo-express restart: always...

Hello guys ! I also had the same issue ! Here are my project informations: "next": "12.2.3", "react-firebase-hooks": "^5.0.3", "firebase": "^9.9.4",

Still currently having this issue on nextjs and prisma

> Have the same issue here on pnpm 9. Our service is in a monorepo, and the rest of the app depends on v9, so unfortunately can't downgrade to v8....