From 2b583ad7e0deb10ada4118795d276cda677963dd Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Tue, 27 Jul 2021 15:10:49 -0600 Subject: [PATCH] struct(dockerfile): change internal labels - add internal name label to allow finding containers - use new domain in private labels --- build/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 511de51..805ef9f 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -47,6 +47,7 @@ HEALTHCHECK \ # standardized labels MAINTAINER Asif Bacchus LABEL maintainer="Asif Bacchus " +LABEL dev.asifbacchus.docker.internalName="ab-nginx" LABEL org.opencontainers.image.author="Asif Bacchus " LABEL org.opencontainers.image.url="https://git.asifbacchus.dev/ab-docker/ab-nginx" LABEL org.opencontainers.image.documentation="https://git.asifbacchus.dev/ab-docker/ab-nginx/wiki" @@ -102,7 +103,7 @@ ARG GIT_COMMIT ARG INTERNAL_VERSION LABEL org.opencontainers.image.revision=${GIT_COMMIT} LABEL org.opencontainers.image.version=${NGINX_VERSION} -LABEL app.asifbacchus.docker.internalVersion=${INTERNAL_VERSION}-${NGINX_VERSION} +LABEL dev.asifbacchus.docker.internalVersion=${INTERNAL_VERSION}-${NGINX_VERSION} LABEL org.opencontainers.image.created=${BUILD_DATE} #EOF