Skip to content

gogovan-vincentngai/docker-locust

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

docker-locust

Docker base image for locust master/slave/standalone.

How to use

This is a base image of locust. So you have to build your own docker image from this image like this.

FROM hakobera/locust

ADD ./test /test
ENV SCENARIO_FILE /test/locustfile.py

Then build it and run.

$ docker build -t locust-test .

standalone

$ docker run -e LOCUST_MODE=standalone -e TARGET_URL=http://127.0.0.1 locust-test

distribution

master

$ docker run \
  -e LOCUST_MODE=master \
  -e TARGET_URL=http://<your-target-server> \
  locust-test

slave

$ docker run \
  -e LOCUST_MODE=slave \
  -e MASTER_HOST=http://<master-server-ip> \
  -e TARGET_URL=https://<your-target-server> \
  locust-test

About

Docker image for both locust master and slave

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 50.8%
  • Shell 49.2%