Guest User

Untitled

a guest
Feb 19th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. version: "3.3"
  2.  
  3. services:
  4. redis:
  5. image: redis:3.2.11
  6.  
  7. memcached:
  8. image: memcached
  9.  
  10. postgres:
  11. image: postgres:9.6.6
  12. environment:
  13. POSTGRES_USER: vax
  14. POSTGRES_PASSWORD: vaxpassword
  15. POSTGRES_DB: vax_automate_qa
  16.  
  17. vax:
  18. image: vax/components
  19. depends_on:
  20. - postgres
  21. - redis
  22. - memcached
  23. ports:
  24. - '3000:3000'
  25. env_file:
  26. - automate_qa/docker.env
Add Comment
Please, Sign In to add comment