Advertisement
vaidyasm

fastscore docker-compose.yml

Apr 11th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. version: '2'
  2. services:
  3. dashboard:
  4. image: fastscore/dashboard:1.4
  5. network_mode: "host"
  6. stdin_open: true
  7. tty: true
  8. environment:
  9. CONNECT_PREFIX: https://127.0.0.1:8001
  10.  
  11. connect:
  12. image: fastscore/connect:1.4
  13. network_mode: "host"
  14. stdin_open: true
  15. tty: true
  16.  
  17. engine-1:
  18. image: fastscore/engine-x:1.4
  19. network_mode: "host"
  20. stdin_open: true
  21. tty: true
  22. environment:
  23. CONNECT_PREFIX: https://127.0.0.1:8001
  24.  
  25. database:
  26. image: fastscore/model-manage-mysql:1.4
  27. network_mode: "host"
  28. volumes:
  29. - db:/var/lib/mysql
  30.  
  31. model-manage:
  32. image: fastscore/model-manage:1.4
  33. network_mode: "host"
  34. stdin_open: true
  35. tty: true
  36. depends_on:
  37. - connect
  38. - database
  39. environment:
  40. CONNECT_PREFIX: https://127.0.0.1:8001
  41.  
  42. volumes:
  43. db:
  44. external: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement