Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. version: "3"
  2. services:
  3. web:
  4. # replace username/repo:tag with your name and image details
  5. image: trilebks2014/alexa-skill-service:without-mongo
  6. deploy:
  7. replicas: 5
  8. resources:
  9. limits:
  10. cpus: "0.1"
  11. memory: 50M
  12. restart_policy:
  13. condition: on-failure
  14. ports:
  15. - "3000:3000"
  16. networks:
  17. - webnet
  18. links:
  19. - mongo:mongo
  20. depends_on:
  21. - mongo
  22. mongo:
  23. image: mongo
  24. volumes:
  25. - mongo-data:/data
  26. volumes:
  27. mongo-data:
  28. networks:
  29. webnet:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement