17 lines
358 B
YAML
17 lines
358 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
emqx:
|
|
image: ${EMQX_IMAGE_TAG:-emqx/emqx:latest}
|
|
environment:
|
|
EMQX_DASHBOARD__DEFAULT_PASSWORD: admin
|
|
|
|
selenium:
|
|
shm_size: '2gb'
|
|
image: ghcr.io/emqx/selenium-chrome:latest
|
|
volumes:
|
|
- ./:/app
|
|
depends_on:
|
|
- emqx
|
|
command: python3 -m pytest --dashboard-host emqx --dashboard-port 18083
|