Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4. db_vidu:
  5. image: postgres
  6. ports:
  7. - "6000:5432"
  8. web_vd:
  9. build: .
  10. command: python3 manage.py runserver 0.0.0.0:5000
  11. volumes:
  12. - .:/code
  13. ports:
  14. - "7000:5000"
  15. depends_on:
  16. - db_vidu
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement