mirror of https://github.com/locustio/locust.git
17 lines
348 B
YAML
17 lines
348 B
YAML
version: '3'
|
|
|
|
services:
|
|
master:
|
|
image: locustio/locust
|
|
ports:
|
|
- "8089:8089"
|
|
volumes:
|
|
- ./:/mnt/locust
|
|
command: -f /mnt/locust/locustfile.py --master -H http://master:8089
|
|
|
|
worker:
|
|
image: locustio/locust
|
|
volumes:
|
|
- ./:/mnt/locust
|
|
command: -f /mnt/locust/locustfile.py --worker --master-host master
|