You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
292 B

3 years ago
  1. version: "2"
  2. services:
  3. boilerplate-api:
  4. build: .
  5. environment:
  6. - MONGO_URI=mongodb://mongodb:27017/sg-node-express-rest-api
  7. volumes:
  8. - .:/app
  9. ports:
  10. - "3000:3000"
  11. depends_on:
  12. - mongodb
  13. mongodb:
  14. image: mongo
  15. ports:
  16. - "27017:27017"