Dedicated locations installation

Run a Control Plane on Docker, to set up your Private Locations and run load generators.

Docker is a tool for running applications in containers.

In this example:

Control Plane service

The DockerHub repository hosts the Control Plane image, identified as gatlingcorp/control-plane.

The following Docker Compose file will generate a control-plane container using the latest version of the image.

docker-compose.yml:

version: '3.8'
services:
  control-plane:
    image: gatlingcorp/control-plane:latest
    container_name: control-plane
    volumes:
      - /etc/control-plane:/app/conf

The /etc/control-plane directory must include a file named control-plane.conf. This file should contain the Control Plane configuration.

Additionally, the /etc/control-plane directory may also include a LogBack configuration file named logback.xml.

Edit this page on GitHub