Advertisement
Guest User

Untitled

a guest
May 25th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. version: '2'
  2.  
  3. services:
  4. buildit:
  5. image: omitobi/buildit
  6. ports:
  7. - "8090:8080"
  8. links:
  9. - postgres
  10. - rentit
  11. environment:
  12. POSTGRES: postgres
  13. POSTGRES_USERNAME: postgres
  14. POSTGRES_PASSWORD: mysecretword
  15.  
  16. rentit:
  17. image: teamrr/rentit
  18. ports:
  19. - "8080:8080"
  20. links:
  21. - postgres
  22.  
  23. postgres:
  24. image: postgres
  25. environment:
  26. POSTGRES_PASSWORD: mysecretword
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement