--
You received this message because you are subscribed to the Google Groups "jmeter-plugins" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jmeter-plugin...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Btw, this Docker image has pretty latest JMeter with some
plugins: https://hub.docker.com/r/undera/taurus/
ENV JMETER_VERSION=3.0
ENV JMETER_PATH=/opt/jmeter_jp
ENV PLUGINS_PATH=$JMETER_PATH/plugins
....
# get the PluginsManagerCMD.sh from the jar (the PluginsManagerCMD.sh is in the jar)
RUN cd $JMETER_PATH && \
java -cp apache-jmeter-$JMETER_VERSION/lib/ext/jmeter-plugins-manager-0.10.jar org.jmeterplugins.repository.PluginManagerCMDInstaller
RUN cd $JMETER_PATH/apache-jmeter-$JMETER_VERSION/bin && \
chmod u+x PluginsManagerCMD.sh
# a selection of usefull plugins from jmeter-plugins.org
ENV LIST_PLUGINS="jpgc-casutg=2.1,jpgc-csl=0.1,jpgc-dbmon=0.1,jpgc-dummy=0.1,jpgc-functions=2.0,jpgc-jmxmon=0.2,jpgc-perfmon=2.1,jpgc-graphs-basic=2.0,jpgc-graphs-additional=2.0,jpgc-graphs-dist=2.0,jpgc-graphs-vs=2.0,jpgc-cmd=2.1,jpgc-filterresults=2.1,jpgc-ggl=2.0,jpgc-mergeresults=2.0,jpgc-pde=0.1,jpgc-synthesis=2.0,jpgc-sts=2.2"
# Run the PluginsManager to download and install files (jars and scripts files)
RUN cd $JMETER_PATH/apache-jmeter-$JMETER_VERSION/bin && \
JVM_ARGS="-Dhttps.proxyHost=$ARG_https_proxyHost -Dhttps.proxyPort=$ARG_https_proxyPort" ./PluginsManagerCMD.sh install $LIST_PLUGINS && \
JVM_ARGS="-Dhttps.proxyHost=$ARG_https_proxyHost -Dhttps.proxyPort=$ARG_https_proxyPort" ./PluginsManagerCMD.sh status