Advertisement
Guest User

Untitled

a guest
May 25th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. builditfront:
  2. image: akaiz/buildit:2
  3. ports:
  4. - "8001:8001"
  5. links:
  6. - buildit
  7. buildit:
  8. image: akaiz/builditservice:2
  9. ports:
  10. - "8080:8080"
  11. links:
  12. - postgres
  13. - rentit
  14. environment:
  15. POSTGRES: postgres
  16. POSTGRES_USERNAME: postgres
  17. POSTGRES_PASSWORD: mysecretword
  18.  
  19. frontend:
  20. image: akaiz/rentit:2
  21. ports:
  22. - "8000:8000"
  23. links:
  24. - rentit
  25. rentit:
  26. image: akaiz/rentitservice:2
  27. ports:
  28. - "8090:8090"
  29. links:
  30. - postgres
  31. environment:
  32. POSTGRES: postgres
  33. POSTGRES_USERNAME: postgres
  34. POSTGRES_PASSWORD: mysecretword
  35.  
  36. postgres:
  37. image: postgres
  38. environment:
  39. POSTGRES_PASSWORD: mysecretword
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement