Skip to content

Instantly share code, notes, and snippets.

@arthurfnsc
arthurfnsc / sonarqube-h2.yml
Last active May 30, 2020 02:09
SonarQube H2 - Docker Compose
version: "3"
services:
sonarqube:
image: sonarqube:8.3.1-community
expose:
- 9000
ports:
- "127.0.0.1:9000:9000"
networks:
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@CharlesLuxinger
CharlesLuxinger / Dockerfile
Last active July 3, 2021 18:02
Ignore Spring Actuator Endpoint in New Relic Transactions Metrics
FROM adoptopenjdk/openjdk11:jre-11.0.9.1_1-alpine
VOLUME /tmp
COPY ./app.jar .
COPY ./newrelic-custom-instrumentation.xml ./extensions/newrelic-custom-instrumentation.xml
COPY ./newrelic.yml .
CMD java -javaagent:newrelic.jar