From d5a3f7e38557692f4f17a834f967a3f7cbdeaccc Mon Sep 17 00:00:00 2001 From: mueller-ma Date: Mon, 2 Oct 2023 23:47:04 +0200 Subject: [PATCH] Add LABEL to Docker image (#3802) This label can be used to fetch more information about this image. For example Renovate uses this label to get the changelog of a specific version: https://docs.renovatebot.com/modules/datasource/docker/ --- docker/dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/dockerfile b/docker/dockerfile index 719cba5c..1993c104 100644 --- a/docker/dockerfile +++ b/docker/dockerfile @@ -30,6 +30,8 @@ FROM $BASE_IMAGE AS release USER node WORKDIR /app +LABEL org.opencontainers.image.source="https://github.com/louislam/uptime-kuma" + ENV UPTIME_KUMA_IS_CONTAINER=1 # Copy app files from build layer