Advertisement
Guest User

docker_compose

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