2024-11-27 21:07:21 -05:00
|
|
|
version: '3'
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
|
|
stress-test:
|
|
|
|
|
build:
|
|
|
|
|
context: .
|
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
|
container_name: stress-test
|
2024-12-09 22:17:27 -05:00
|
|
|
#environment:
|
2024-12-10 13:32:18 -05:00
|
|
|
# - BASE_URL=http://host.docker.internal
|
2024-12-09 22:17:27 -05:00
|
|
|
# - USER_EMAIL=admin@admin.com
|
|
|
|
|
# - USER_PASSWORD=admin
|
|
|
|
|
# - NUMBER_ROOMS=5
|
|
|
|
|
# - USERS_PER_ROOM=60
|
|
|
|
|
# - MAX_MESSAGES_ROUND=20
|
|
|
|
|
# - CONVERSATION_INTERVAL=1000
|
|
|
|
|
# - MESSAGE_RESPONSE_TIMEOUT=5000
|
|
|
|
|
# - BATCH_DELAY=1000
|
|
|
|
|
# - BATCH_SIZE=10
|
2024-12-10 13:32:18 -05:00
|
|
|
env_file:
|
|
|
|
|
- .env
|
|
|
|
|
extra_hosts:
|
|
|
|
|
- "host.docker.internal:host-gateway"
|
2024-12-07 19:33:38 -05:00
|
|
|
volumes:
|
2024-12-09 22:17:27 -05:00
|
|
|
- ./output:/app/output
|