Advertisement
Guest User

Untitled

a guest
Mar 13th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. web:
  2. build: .
  3. ports:
  4. - "4000:4000"
  5. command: mix phoenix.server
  6. environment:
  7. - MIX_ENV=dev
  8. - PORT=4000
  9. volumes:
  10. - .:/app
  11. links:
  12. - db
  13. db:
  14. image: postgres
  15. environment:
  16. - POSTGRES_USER=postgres
  17. - POSTGRES_PASSWORD=postgres
  18. - POSTGRES_HOST=db
  19.  
  20. test:
  21. image: phoenixdocker_web
  22. command: mix test
  23. environment:
  24. - MIX_ENV=test
  25. volumes_from:
  26. - web
  27. links:
  28. - db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement