DEV Community

Discussion on: Docker-compose an express and mongo App

Collapse
 
junibrosas profile image
Juni Brosas • Edited

Also, the data storage did not persist. I added extra setup in the yaml file.

 mongo:
    image: mongo:4.2.8
    ports:
      - 27017:27017
    volumes:
      - mongodb:/data/db
      - mongodb_config:/data/configdb

volumes:
  mongodb:
  mongodb_config:
Enter fullscreen mode Exit fullscreen mode