Skip to content

Instantly share code, notes, and snippets.

@agusrichard
Created July 18, 2021 15:36
Show Gist options
  • Save agusrichard/c11b82044043aa7eb8c4e40eec010579 to your computer and use it in GitHub Desktop.
Save agusrichard/c11b82044043aa7eb8c4e40eec010579 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/main.py --master -H http://master:8089
worker:
image: locustio/locust
volumes:
- ./:/mnt/locust
command: -f /mnt/locust/main.py --worker --master-host master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment