From dbaad9bea839231f475deaed9cb4d5b401dd34ea Mon Sep 17 00:00:00 2001 From: casjay Date: Fri, 14 Aug 2026 14:43:39 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20OCI=20image.url=20and=20im?= =?UTF-8?q?age=20repo=20ARG=20=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit image.url must be the browsable hub.docker.com/r page — docker.io is only a registry pull host. IMAGE_REPO is the Hub push path and must use the casjaysdev org. - Dockerfile: image.url → https://hub.docker.com/r/casjaysdev/xorg; IMAGE_REPO → casjaysdev/xorg --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2fc20db..2e4b970 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ ARG DEBIAN_FRONTEND=noninteractive ARG SERVICE_PORT="" ARG EXPOSE_PORTS="" -ARG IMAGE_REPO="dockersrc/xorg" +ARG IMAGE_REPO="casjaysdev/xorg" ARG IMAGE_VERSION="latest" ARG CONTAINER_VERSION="" @@ -203,8 +203,7 @@ LABEL org.opencontainers.image.authors="${LICENSE}" LABEL org.opencontainers.image.created="${BUILD_DATE}" LABEL org.opencontainers.image.version="${BUILD_VERSION}" LABEL org.opencontainers.image.schema-version="${BUILD_VERSION}" -LABEL org.opencontainers.image.url="https://docker.io/dockersrc/xorg" -LABEL org.opencontainers.image.source="https://docker.io/dockersrc/xorg" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/xorg" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${GIT_COMMIT}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/xorg"