fix: Set correct github URL as image source in Dockerfiles (#1698)

I went ahead and looked for more occurences of the issue i raised #1697 and fixed them. I hope that's alright with you.
This commit is contained in:
Hannes Leutloff 2026-02-04 17:11:31 +01:00 committed by GitHub
parent 3c38272f95
commit 8f1026089d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 9 additions and 9 deletions

View file

@ -8,7 +8,7 @@ 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/hyperdx/hyperdx" \
org.opencontainers.image.source="https://github.com/hyperdxio/hyperdx" \
org.opencontainers.image.licenses="MIT"
COPY ./config.dev.yaml /etc/otelcol-contrib/config.yaml
@ -20,7 +20,7 @@ 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/hyperdx/hyperdx" \
org.opencontainers.image.source="https://github.com/hyperdxio/hyperdx" \
org.opencontainers.image.licenses="MIT"
COPY ./config.dev.yaml /etc/otelcol-contrib/config.yaml

View file

@ -59,7 +59,7 @@ FROM node:${NODE_VERSION}-alpine AS prod
LABEL org.opencontainers.image.vendor="HyperDX" \
org.opencontainers.image.title="HyperDX Production" \
org.opencontainers.image.description="HyperDX production image with API and App services" \
org.opencontainers.image.source="https://github.com/hyperdx/hyperdx" \
org.opencontainers.image.source="https://github.com/hyperdxio/hyperdx" \
org.opencontainers.image.licenses="MIT"
ARG CODE_VERSION
@ -156,7 +156,7 @@ FROM all-in-one-base AS all-in-one-noauth
LABEL org.opencontainers.image.vendor="HyperDX" \
org.opencontainers.image.title="HyperDX All-in-One (No Auth)" \
org.opencontainers.image.description="HyperDX all-in-one image with ClickHouse, MongoDB, and OTel Collector (no authentication)" \
org.opencontainers.image.source="https://github.com/hyperdx/hyperdx" \
org.opencontainers.image.source="https://github.com/hyperdxio/hyperdx" \
org.opencontainers.image.licenses="MIT"
COPY --from=hyperdx ./entry.local.noauth.sh /etc/local/entry.sh
@ -172,7 +172,7 @@ FROM all-in-one-base AS all-in-one-auth
LABEL org.opencontainers.image.vendor="HyperDX" \
org.opencontainers.image.title="HyperDX All-in-One (With Auth)" \
org.opencontainers.image.description="HyperDX all-in-one image with ClickHouse, MongoDB, and OTel Collector (with authentication)" \
org.opencontainers.image.source="https://github.com/hyperdx/hyperdx" \
org.opencontainers.image.source="https://github.com/hyperdxio/hyperdx" \
org.opencontainers.image.licenses="MIT"
COPY --from=hyperdx ./entry.local.auth.sh /etc/local/entry.sh

View file

@ -38,7 +38,7 @@ FROM base AS dev
LABEL org.opencontainers.image.vendor="HyperDX" \
org.opencontainers.image.title="HyperDX OTel Collector (Dev)" \
org.opencontainers.image.description="OpenTelemetry Collector for HyperDX development" \
org.opencontainers.image.source="https://github.com/hyperdx/hyperdx" \
org.opencontainers.image.source="https://github.com/hyperdxio/hyperdx" \
org.opencontainers.image.licenses="MIT"
COPY --chown=10001:10001 ./config.yaml /etc/otelcol-contrib/config.yaml
@ -57,7 +57,7 @@ FROM base AS prod
LABEL org.opencontainers.image.vendor="HyperDX" \
org.opencontainers.image.title="HyperDX OTel Collector" \
org.opencontainers.image.description="OpenTelemetry Collector for HyperDX observability platform" \
org.opencontainers.image.source="https://github.com/hyperdx/hyperdx" \
org.opencontainers.image.source="https://github.com/hyperdxio/hyperdx" \
org.opencontainers.image.licenses="MIT"
COPY --chown=10001:10001 ./config.yaml /etc/otelcol-contrib/config.yaml

View file

@ -37,7 +37,7 @@ FROM node:22.16.0-alpine AS prod
LABEL org.opencontainers.image.vendor="HyperDX" \
org.opencontainers.image.title="HyperDX API" \
org.opencontainers.image.description="HyperDX API service for observability platform" \
org.opencontainers.image.source="https://github.com/hyperdx/hyperdx" \
org.opencontainers.image.source="https://github.com/hyperdxio/hyperdx" \
org.opencontainers.image.licenses="MIT"
ARG CODE_VERSION

View file

@ -48,7 +48,7 @@ FROM node:22.16.0-alpine AS prod
LABEL org.opencontainers.image.vendor="HyperDX" \
org.opencontainers.image.title="HyperDX App" \
org.opencontainers.image.description="HyperDX frontend application for observability platform" \
org.opencontainers.image.source="https://github.com/hyperdx/hyperdx" \
org.opencontainers.image.source="https://github.com/hyperdxio/hyperdx" \
org.opencontainers.image.licenses="MIT"
WORKDIR /app