Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. version: '3'
  2. services:
  3. mockServer:
  4. image: jamesdbloom/mockserver:mockserver-5.6.0
  5. ports:
  6. - 1080
  7. environment:
  8. - LOG_LEVEL=DEBUG # INFO
  9.  
  10. psql:
  11. image: postgres
  12. ports:
  13. - 5432
  14. environment:
  15. POSTGRES_PASSWORD: fake
  16. POSTGRES_DB: fake
  17. TZ: GMT
  18.  
  19. localstack:
  20. network_mode: bridge
  21. image: localstack/localstack:0.9.5
  22. environment:
  23. - SERVICES= sqs,s3
  24. - DEFAULT_REGION='moon-east-1'
  25. - LOG_LEVEL=ERROR
  26. - HOSTNAME_EXTERNAL=${HOSTNAME_EXTERNAL}
  27. ports:
  28. - 4576
  29. - 4572
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement