Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2024
297
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.9'
  2. services:
  3. app:
  4. build: .
  5. ports:
  6. - "8080:8080"
  7. depends_on:
  8. rabbitmq:
  9. condition: service_healthy
  10. rabbitmq:
  11. image: "rabbitmq:3-management"
  12. hostname: "rabbit"
  13. environment:
  14. RABBITMQ_DEFAULT_USER: dev
  15. RABBITMQ_DEFAULT_PASS: test
  16. ports:
  17. - "5672:5672"
  18. - "15672:15672"
  19. healthcheck:
  20. test: ["CMD", "rabbitmqctl", "status"]
  21. interval: 30s
  22. timeout: 10s
  23. retries: 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement