Advertisement
Guest User

Untitled

a guest
Mar 4th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement