Advertisement
Guest User

Untitled

a guest
Jun 17th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. version: '2'
  2. services:
  3. web:
  4. build: .
  5. command: python -u app.py
  6. ports:
  7. - "5000:5000"
  8. volumes:
  9. - .:/todo
  10. links:
  11. - mongodb
  12.  
  13. mongodb:
  14. image: mongo:latest
  15. container_name: "mongodb"
  16. environment:
  17. - MONGO_DATA_DIR=/data/db
  18. - MONGO_LOG_DIR=/dev/null
  19. volumes:
  20. - ./data/db:/data/db
  21. ports:
  22. - 27017:27017
  23. command: mongod --smallfiles --logpath=/dev/null # --quiet
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement