Guest User

Untitled

a guest
Jun 24th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. version: '3.6'
  2.  
  3. services:
  4. db:
  5. image: 'postgres:9.5'
  6. volumes:
  7. - 'postgres:/var/lib/postgresql/data'
  8.  
  9. app:
  10. depends_on:
  11. - 'db'
  12. build: .
  13. command: bash start
  14. ports:
  15. - '3000:3000'
  16. volumes:
  17. - '.:/portfolio'
  18. - 'box:/box'
  19. environment:
  20. - SELENIUM_HOST=selenium
  21. - SELENIUM_PORT=4444
  22. - TEST_APP_HOST=app
  23. - TEST_PORT=3000
  24. stdin_open: true
  25. tty: true
  26.  
  27. box:
  28. image: busybox
  29. volumes:
  30. - box:/box
  31.  
  32. mailcatcher:
  33. image: tophfr/mailcatcher
  34. ports:
  35. - 1025:25
  36. - 1080:80
  37.  
  38. selenium:
  39. image: selenium/standalone-chrome-debug:3.0.1-germanium
  40. logging:
  41. driver: none
  42. stdin_open: true
  43. tty: true
  44. ports: ['4444:4444', '5900:5900']
  45.  
  46. volumes:
  47. postgres:
  48. box:
Add Comment
Please, Sign In to add comment