mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
I went ahead and looked for more occurences of the issue i raised #1697 and fixed them. I hope that's alright with you.
26 lines
1.2 KiB
Docker
26 lines
1.2 KiB
Docker
## base #############################################################################################
|
|
FROM otel/opentelemetry-collector-contrib:0.90.0 AS base
|
|
|
|
|
|
## dev #############################################################################################
|
|
FROM base as dev
|
|
|
|
LABEL org.opencontainers.image.vendor="HyperDX" \
|
|
org.opencontainers.image.title="HyperDX Host Metrics (Dev)" \
|
|
org.opencontainers.image.description="Host metrics collector for HyperDX development" \
|
|
org.opencontainers.image.source="https://github.com/hyperdxio/hyperdx" \
|
|
org.opencontainers.image.licenses="MIT"
|
|
|
|
COPY ./config.dev.yaml /etc/otelcol-contrib/config.yaml
|
|
|
|
|
|
## prod #############################################################################################
|
|
FROM base as prod
|
|
|
|
LABEL org.opencontainers.image.vendor="HyperDX" \
|
|
org.opencontainers.image.title="HyperDX Host Metrics" \
|
|
org.opencontainers.image.description="Host metrics collector for HyperDX observability platform" \
|
|
org.opencontainers.image.source="https://github.com/hyperdxio/hyperdx" \
|
|
org.opencontainers.image.licenses="MIT"
|
|
|
|
COPY ./config.dev.yaml /etc/otelcol-contrib/config.yaml
|