https://github.com/guitarrapc/docker-jmeter-gui
JMeter GUI Alpine image connectable with RDP or VNC
https://github.com/guitarrapc/docker-jmeter-gui
alpine docker jmeter
Last synced: over 1 year ago
JSON representation
JMeter GUI Alpine image connectable with RDP or VNC
- Host: GitHub
- URL: https://github.com/guitarrapc/docker-jmeter-gui
- Owner: guitarrapc
- Created: 2020-09-01T17:52:05.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-01T19:44:17.000Z (almost 6 years ago)
- Last Synced: 2025-03-17T09:45:16.349Z (over 1 year ago)
- Topics: alpine, docker, jmeter
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/guitarrapc/jmeter-gui
- Size: 9.77 KB
- Stars: 9
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
  [](https://hub.docker.com/r/guitarrapc/jmeter-gui/)
# docker-jmeter-gui
Docker image for [Apache JMeter](http://jmeter.apache.org).
This Docker image run jmeter gui on container and user can connect via VNC or RDP.
Find Images of this repo on [Docker Hub](https://hub.docker.com/r/guitarrapc/jmeter-gui).
## Usage
run container
```shell
docker run -itd --rm -v ${WORK_DIR}/:/root/jmeter/ -p 5900:5900 -p 3390:3389 guitarrapc/jmeter-gui:latest
```
docker-compose (see sample)
```shell
docker-compose up
```
```yaml
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`.
