NewRelic Jar files for running java agent
1.6K
The main purpose of this container is to provide the necessary JAR files through volume mapping to an application container running Java. That way the Java application does not need to be rebuilt, and control of running the app is handled at runtime, not at build time.
docker run --name newrelic-java-agent rkhtech/newrelic-java-agent
docker run --rm -it --volumes-from newrelic-java-agent ubuntu bash
docker run -d \
--restart=unless-stopped -p 8080:8080 \
--name rancher-server \
--volumes-from newrelic-java-agent \
-e JAVA_OPTS='-javaagent:/newrelic/newrelic.jar' \
-e NEW_RELIC_LICENSE_KEY=9999999999999999999999999999999999999999 \
-e NEW_RELIC_APP_NAME='Rancher-Server-Test-Java-Agent' \
rancher/server
Content type
Image
Digest
Size
9.1 MB
Last updated
over 9 years ago
docker pull rkhtech/newrelic-java-agent