Cannot start service mongo
ERROR: for mongo Cannot start service mongo: driver failed programming external connectivity on endpoint mongo (90b8dd1b53fe2ff77d1468cff3a1f5f73e7c202fb66fb0678278aeab50278df1): Error starting userland proxy: mkdir /port/tcp:0.0.0.0:27017:tcp:172.20.0.2:27017: input/output error ERROR: Encountered errors while bringing up the project.
docker-compose.yml: version: '3' services: app: container_name: docker-node-mongo restart: always build: . ports: - '80:3000' links: - mongo mongo: container_name: mongo image: mongo ports: - '27017:27017'
package.json: { "name": "docker-node-mongo", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "start": "node index.js" }, "keywords": [], "author": "", "license": "ISC", "dependencies": { "body-parser": "^1.18.3", "ejs": "^2.6.1", "express": "^4.16.3", "mongoose": "^5.2.7" } }