Docker image for Apache JMeter. This Docker image run jmeter gui on container and user can connect via VNC or RDP. Find Images of this repo on Docker Hub.
run container
docker run -itd --rm -v ${WORK_DIR}/:/root/jmeter/ -p 5900:5900 -p 3390:3389 guitarrapc/jmeter-gui:latest
docker-compose (see sample)
docker-compose up
version: "3"
services:
web:
image: guitarrapc/jmeter-gui:latest
tty: true
volumes:
- ./scenario/:/root/jmeter/
ports:
- 5900:5900
- 3390:3389
connect to container via VNC or RDP.
- vpc pass:
root
- rdp pass:
root
RDP
TIPS: if you cannot see password column, just press ENTER key.
VNC
Jmeter GUI is already launched.
Configure JMeter Scenario with GUI inside container.
Save Scenario's .jmx
on mounted volume to share Scenario with Host OS, in this example /root/jmeter
.