docker-compose.yaml 413 B

12345678910111213141516
  1. services:
  2. emqx:
  3. image: ${_EMQX_DOCKER_IMAGE_TAG:-emqx/emqx:latest}
  4. environment:
  5. EMQX_DASHBOARD__DEFAULT_PASSWORD: admin
  6. EMQX_LOG__CONSOLE__LEVEL: debug
  7. selenium:
  8. shm_size: '2gb'
  9. image: ghcr.io/emqx/selenium-chrome:1.0.0
  10. platform: linux/amd64
  11. volumes:
  12. - ./:/app
  13. depends_on:
  14. - emqx
  15. command: python3 -m pytest --dashboard-host emqx --dashboard-port 18083