Guest User

Untitled

a guest
Feb 13th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4.  
  5. postgres:
  6. image: postgres
  7. ports:
  8. - "5432:5432"
  9. environment:
  10. POSTGRES_USER: postgres
  11. POSTGRES_PASSWORD: password
  12. POSTGRES_DB: postgres
  13.  
  14. broker_app:
  15. image: dius/pact-broker
  16. ports:
  17. - "80:80"
  18. links:
  19. - postgres
  20. environment:
  21. PACT_BROKER_DATABASE_USERNAME: postgres
  22. PACT_BROKER_DATABASE_PASSWORD: password
  23. PACT_BROKER_DATABASE_HOST: postgres
  24. PACT_BROKER_DATABASE_NAME: postgres
Add Comment
Please, Sign In to add comment