MongoDB Authentication Issues with Node.js and Mongo-Express in Docker Compose setup
I was trying to use docker in a project I built a while back and I'm having trouble with MongoDB authentication when using Docker Compose. Here's my docker-compose.yml: services: web: build: . ports: - "${PORT}:${PORT}" environment: - PORT=${PORT} - CONNECTION_STRING=${CONNECTION_STRING}…