-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
26 lines (25 loc) · 1006 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
version: "3"
services:
master:
image: ECR_IMAGE_URI/locust-repository:IMAGE_TAG
ports:
- "8089:8089"
command: -f /mnt/locust/locustfile.py --master -H http://master:8089
worker:
image: ECR_IMAGE_URI/locust-repository:IMAGE_TAG
command: -f /mnt/locust/locustfile.py --worker --master-host master
worker1:
image: ECR_IMAGE_URI/locust-repository:IMAGE_TAG
command: -f /mnt/locust/locustfile.py --worker --master-host master
worker2:
image: ECR_IMAGE_URI/locust-repository:IMAGE_TAG
command: -f /mnt/locust/locustfile.py --worker --master-host master
worker3:
image: ECR_IMAGE_URI/locust-repository:IMAGE_TAG
command: -f /mnt/locust/locustfile.py --worker --master-host master
worker4:
image: ECR_IMAGE_URI/locust-repository:IMAGE_TAG
command: -f /mnt/locust/locustfile.py --worker --master-host master
worker5:
image: ECR_IMAGE_URI/locust-repository:IMAGE_TAG
command: -f /mnt/locust/locustfile.py --worker --master-host master