Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4. db:
  5. image: postgres
  6. env_file: &environment
  7. - .env
  8. web:
  9. image: angarsk8/todo_app
  10. command: bash -c "sleep 15 && _build/prod/rel/todo_app/bin/todo_app foreground"
  11. env_file: *environment
  12. ports:
  13. - "80:8080"
  14. depends_on:
  15. - migration
  16. links:
  17. - db
  18. migration:
  19. image: angarsk8/todo_app
  20. command: bash -c "sleep 10 && mix ecto.setup"
  21. env_file: *environment
  22. links:
  23. - db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement