denvazh/gatling
Gatling is a highly capable load testing tool.
500K+
Note: Gatling versions from 2.1.0 to 2.2.5 are built with Scala 2.11, versions from 2.3.0 onwards are built with Scala 2.12.
Install Docker
Get automated build from public registry:
Latest version:
docker pull denvazh/gatling:latest
All versions:
docker pull denvazh/gatling
Specific version:
docker pull denvazh/gatling:3.2.1
docker build -t="denvazh/gatling" github.com/denvazh/gatling
Use image to run container
docker run -it --rm denvazh/gatling
Mount configuration and simulation files from the host machine and run gatling in interactive mode
docker run -it --rm -v /home/core/gatling/conf:/opt/gatling/conf \
-v /home/core/gatling/user-files:/opt/gatling/user-files \
-v /home/core/gatling/results:/opt/gatling/results \
denvazh/gatling
Use the -e
switch to use JAVA_OPTS to pass parameters to gatling tests
docker run -e JAVA_OPTS="-Dusers=10" -it --rm denvazh/gatling
docker pull denvazh/gatling