Skip to content

Commit 6fe2317

Browse files
MindToothpront
andauthoredMar 11, 2025
chore(releasing): add basic oci labels (vectordotdev#22546)
Source is useful for Renovate to pull changelogs. Co-authored-by: Pavlos Rontidis <pavlos.rontidis@gmail.com>
1 parent e050e47 commit 6fe2317

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed
 

‎distribution/docker/alpine/Dockerfile

+6
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ RUN ARCH=$(if [ "$TARGETPLATFORM" = "linux/arm/v6" ]; then echo "arm"; else cat
1313
RUN mkdir -p /var/lib/vector
1414

1515
FROM docker.io/alpine:3.21
16+
17+
# https://github.com/opencontainers/image-spec/blob/main/annotations.md
18+
LABEL org.opencontainers.image.url="https://vector.dev"
19+
LABEL org.opencontainers.image.source="https://github.com/vectordotdev/vector"
20+
LABEL org.opencontainers.image.documentation="https://vector.dev/docs"
21+
1622
# we want the latest versions of these
1723
# hadolint ignore=DL3018
1824
RUN apk --no-cache add ca-certificates tzdata

‎distribution/docker/debian/Dockerfile

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ RUN mkdir -p /var/lib/vector
99

1010
FROM docker.io/debian:bookworm-slim
1111

12+
# https://github.com/opencontainers/image-spec/blob/main/annotations.md
13+
LABEL org.opencontainers.image.url="https://vector.dev"
14+
LABEL org.opencontainers.image.source="https://github.com/vectordotdev/vector"
15+
LABEL org.opencontainers.image.documentation="https://vector.dev/docs"
16+
1217
# we want the latest versions of these
1318
# hadolint ignore=DL3008
1419
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates tzdata systemd && rm -rf /var/lib/apt/lists/*

‎distribution/docker/distroless-libc/Dockerfile

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ RUN mkdir -p /var/lib/vector
1111
# hadolint ignore=DL3007
1212
FROM gcr.io/distroless/cc-debian12:latest
1313

14+
# https://github.com/opencontainers/image-spec/blob/main/annotations.md
15+
LABEL org.opencontainers.image.url="https://vector.dev"
16+
LABEL org.opencontainers.image.source="https://github.com/vectordotdev/vector"
17+
LABEL org.opencontainers.image.documentation="https://vector.dev/docs"
18+
1419
COPY --from=builder /usr/bin/vector /usr/bin/vector
1520
COPY --from=builder /usr/share/doc/vector /usr/share/doc/vector
1621
COPY --from=builder /usr/share/vector /usr/share/vector

‎distribution/docker/distroless-static/Dockerfile

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ RUN mkdir -p /var/lib/vector
1111
# hadolint ignore=DL3007
1212
FROM gcr.io/distroless/static:latest
1313

14+
# https://github.com/opencontainers/image-spec/blob/main/annotations.md
15+
LABEL org.opencontainers.image.url="https://vector.dev"
16+
LABEL org.opencontainers.image.source="https://github.com/vectordotdev/vector"
17+
LABEL org.opencontainers.image.documentation="https://vector.dev/docs"
18+
1419
COPY --from=builder /vector/bin/* /usr/local/bin/
1520
COPY --from=builder /vector/config/vector.yaml /etc/vector/vector.yaml
1621
COPY --from=builder /var/lib/vector /var/lib/vector

0 commit comments

Comments
 (0)
Please sign in to comment.