Skip to content

Instantly share code, notes, and snippets.

@saumiko
Created August 23, 2023 21:48
Show Gist options
  • Save saumiko/085581dc26169dc812ada8e83cd33880 to your computer and use it in GitHub Desktop.
Save saumiko/085581dc26169dc812ada8e83cd33880 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment