masterV1.yml 751 B

12345678910111213141516171819202122232425
  1. version: '3'
  2. services:
  3. master:
  4. build:
  5. context: ..
  6. dockerfile: integration_tests/Dockerfile.Master
  7. command: >
  8. bash -c "
  9. dockerize -wait tcp://mq:5672 -wait tcp://postgres:5432 -timeout 60s &&
  10. echo '########################################################' &&
  11. echo ' Running compat tests Master v1.3.1 - Replica latest ' &&
  12. echo '########################################################' &&
  13. ./run_integration_tests.sh
  14. "
  15. depends_on:
  16. - mq
  17. - replica
  18. volumes:
  19. - ./tests/:/master/integration_tests/tests
  20. - ../dj_cqrs:/master/dj_cqrs
  21. environment:
  22. - CQRS_MASTER_TRANSPORT=dj_cqrs.transport.RabbitMQTransport
  23. - CQRS_BROKER_URL=amqp://mq:5672/