Skip to content

Instantly share code, notes, and snippets.

@lampidudelj
Created November 15, 2019 15:52
Show Gist options
  • Save lampidudelj/9cfb49eda0ac4967512674cc34f6e659 to your computer and use it in GitHub Desktop.
Save lampidudelj/9cfb49eda0ac4967512674cc34f6e659 to your computer and use it in GitHub Desktop.
Docker image for Server instance of JMeter
# Use base image
FROM yourrepo/jmeter:base
LABEL mantainer=""
# Ports to be exposed from the container for JMeter Slaves/Server
EXPOSE 1099 50000
# Application to run on starting the container as a server
ENTRYPOINT jmeter-server -Dserver.rmi.localport=50000 \
-Dserver_port=1099 \
-Jserver.rmi.ssl.disable=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment