From b1ff5c5e37c0dc92357192a641db883557c8665d Mon Sep 17 00:00:00 2001 From: casjay Date: Fri, 14 Aug 2026 14:43:33 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20OCI=20labels=20and=20git?= =?UTF-8?q?=20repo=20env=20URLs=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. source/doc labels and ENV_GIT_REPO_URL now point at the real dockersrc GitHub repo. - Dockerfile: image.url → https://hub.docker.com/r/casjaysdev/ubuntu; source/doc → https://github.com/dockersrc/ubuntu - Dockerfile.18.04: image.url fixed; registry-host source label dropped - Dockerfile.20.04: image.url fixed; registry-host source label dropped - Dockerfile.22.04: image.url fixed; registry-host source label dropped - Dockerfile.24.04: image.url fixed; registry-host source label dropped - Dockerfile.24.10: image.url fixed; registry-host source label dropped - Dockerfile.26.04: image.url fixed; source → https://github.com/dockersrc/ubuntu - .env.scripts: ENV_GIT_REPO_URL → https://github.com/dockersrc/ubuntu - .env.scripts.18.04: ENV_GIT_REPO_URL → https://github.com/dockersrc/ubuntu - .env.scripts.20.04: ENV_GIT_REPO_URL → https://github.com/dockersrc/ubuntu - .env.scripts.22.04: ENV_GIT_REPO_URL → https://github.com/dockersrc/ubuntu - .env.scripts.24.04: ENV_GIT_REPO_URL → https://github.com/dockersrc/ubuntu - .env.scripts.24.10: ENV_GIT_REPO_URL → https://github.com/dockersrc/ubuntu - .env.scripts.26.04: ENV_GIT_REPO_URL → https://github.com/dockersrc/ubuntu --- .env.scripts | 2 +- .env.scripts.18.04 | 2 +- .env.scripts.20.04 | 2 +- .env.scripts.22.04 | 2 +- .env.scripts.24.04 | 2 +- .env.scripts.24.10 | 2 +- .env.scripts.26.04 | 2 +- Dockerfile | 7 +++---- Dockerfile.18.04 | 3 +-- Dockerfile.20.04 | 3 +-- Dockerfile.22.04 | 3 +-- Dockerfile.24.04 | 3 +-- Dockerfile.24.10 | 3 +-- Dockerfile.26.04 | 7 +++---- 14 files changed, 18 insertions(+), 25 deletions(-) diff --git a/.env.scripts b/.env.scripts index 75be1b4..4095c61 100644 --- a/.env.scripts +++ b/.env.scripts @@ -37,7 +37,7 @@ ENV_MAINTAINER="CasjaysDev " # - - - - - - - - - - - - - - - - - - - - - - - - - # Repository URLs (Full URLs) # ENV_GIT_REPO_URL: Complete Git repository URL for source code -ENV_GIT_REPO_URL="https://github.com/casjaysdevdocker/ubuntu" +ENV_GIT_REPO_URL="https://github.com/dockersrc/ubuntu" # ENV_REGISTRY_URL: Registry provider base URL (for example https://docker.io) ENV_REGISTRY_URL="https://docker.io" # - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.env.scripts.18.04 b/.env.scripts.18.04 index 7f85ba6..af591d6 100644 --- a/.env.scripts.18.04 +++ b/.env.scripts.18.04 @@ -37,7 +37,7 @@ ENV_MAINTAINER="CasjaysDev " # - - - - - - - - - - - - - - - - - - - - - - - - - # Repository URLs (Full URLs) # ENV_GIT_REPO_URL: Complete Git repository URL for source code -ENV_GIT_REPO_URL="https://github.com/casjaysdev/ubuntu" +ENV_GIT_REPO_URL="https://github.com/dockersrc/ubuntu" # ENV_REGISTRY_URL: Registry provider base URL (for example https://docker.io) ENV_REGISTRY_URL="https://docker.io" # - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.env.scripts.20.04 b/.env.scripts.20.04 index 0ef7581..8b6e169 100644 --- a/.env.scripts.20.04 +++ b/.env.scripts.20.04 @@ -37,7 +37,7 @@ ENV_MAINTAINER="CasjaysDev " # - - - - - - - - - - - - - - - - - - - - - - - - - # Repository URLs (Full URLs) # ENV_GIT_REPO_URL: Complete Git repository URL for source code -ENV_GIT_REPO_URL="https://github.com/casjaysdev/ubuntu" +ENV_GIT_REPO_URL="https://github.com/dockersrc/ubuntu" # ENV_REGISTRY_URL: Registry provider base URL (for example https://docker.io) ENV_REGISTRY_URL="https://docker.io" # - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.env.scripts.22.04 b/.env.scripts.22.04 index 8a2fe31..1b6e635 100644 --- a/.env.scripts.22.04 +++ b/.env.scripts.22.04 @@ -37,7 +37,7 @@ ENV_MAINTAINER="CasjaysDev " # - - - - - - - - - - - - - - - - - - - - - - - - - # Repository URLs (Full URLs) # ENV_GIT_REPO_URL: Complete Git repository URL for source code -ENV_GIT_REPO_URL="https://github.com/casjaysdev/ubuntu" +ENV_GIT_REPO_URL="https://github.com/dockersrc/ubuntu" # ENV_REGISTRY_URL: Registry provider base URL (for example https://docker.io) ENV_REGISTRY_URL="https://docker.io" # - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.env.scripts.24.04 b/.env.scripts.24.04 index 388eb16..658a066 100644 --- a/.env.scripts.24.04 +++ b/.env.scripts.24.04 @@ -37,7 +37,7 @@ ENV_MAINTAINER="CasjaysDev " # - - - - - - - - - - - - - - - - - - - - - - - - - # Repository URLs (Full URLs) # ENV_GIT_REPO_URL: Complete Git repository URL for source code -ENV_GIT_REPO_URL="https://github.com/casjaysdev/ubuntu" +ENV_GIT_REPO_URL="https://github.com/dockersrc/ubuntu" # ENV_REGISTRY_URL: Registry provider base URL (for example https://docker.io) ENV_REGISTRY_URL="https://docker.io" # - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.env.scripts.24.10 b/.env.scripts.24.10 index 209d2f4..040b058 100644 --- a/.env.scripts.24.10 +++ b/.env.scripts.24.10 @@ -37,7 +37,7 @@ ENV_MAINTAINER="CasjaysDev " # - - - - - - - - - - - - - - - - - - - - - - - - - # Repository URLs (Full URLs) # ENV_GIT_REPO_URL: Complete Git repository URL for source code -ENV_GIT_REPO_URL="https://github.com/casjaysdev/ubuntu" +ENV_GIT_REPO_URL="https://github.com/dockersrc/ubuntu" # ENV_REGISTRY_URL: Registry provider base URL (for example https://docker.io) ENV_REGISTRY_URL="https://docker.io" # - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.env.scripts.26.04 b/.env.scripts.26.04 index a6ac6ad..f03df63 100644 --- a/.env.scripts.26.04 +++ b/.env.scripts.26.04 @@ -37,7 +37,7 @@ ENV_MAINTAINER="CasjaysDev " # - - - - - - - - - - - - - - - - - - - - - - - - - # Repository URLs (Full URLs) # ENV_GIT_REPO_URL: Complete Git repository URL for source code -ENV_GIT_REPO_URL="https://github.com/casjaysdev/ubuntu" +ENV_GIT_REPO_URL="https://github.com/dockersrc/ubuntu" # ENV_REGISTRY_URL: Registry provider base URL (for example https://docker.io) ENV_REGISTRY_URL="https://docker.io" # - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Dockerfile b/Dockerfile index 6011d84..4009eb1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -240,12 +240,11 @@ 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://hub.docker.com/casjaysdevdocker/ubuntu" -LABEL org.opencontainers.image.source="https://hub.docker.com/casjaysdevdocker/ubuntu" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/ubuntu" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" -LABEL org.opencontainers.image.source="https://github.com/casjaysdevdocker/ubuntu" -LABEL org.opencontainers.image.documentation="https://github.com/casjaysdevdocker/ubuntu" +LABEL org.opencontainers.image.source="https://github.com/dockersrc/ubuntu" +LABEL org.opencontainers.image.documentation="https://github.com/dockersrc/ubuntu" LABEL com.github.containers.toolbox="false" ENV ENV=~/.bashrc diff --git a/Dockerfile.18.04 b/Dockerfile.18.04 index 12b50c7..d2ace8b 100644 --- a/Dockerfile.18.04 +++ b/Dockerfile.18.04 @@ -237,8 +237,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="docker.io" -LABEL org.opencontainers.image.source="docker.io" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/ubuntu" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/ubuntu" diff --git a/Dockerfile.20.04 b/Dockerfile.20.04 index 2a964e3..935a2ad 100644 --- a/Dockerfile.20.04 +++ b/Dockerfile.20.04 @@ -237,8 +237,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="docker.io" -LABEL org.opencontainers.image.source="docker.io" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/ubuntu" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/ubuntu" diff --git a/Dockerfile.22.04 b/Dockerfile.22.04 index 0a23783..cd83139 100644 --- a/Dockerfile.22.04 +++ b/Dockerfile.22.04 @@ -237,8 +237,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="docker.io" -LABEL org.opencontainers.image.source="docker.io" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/ubuntu" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/ubuntu" diff --git a/Dockerfile.24.04 b/Dockerfile.24.04 index 8bc5d8d..5141749 100644 --- a/Dockerfile.24.04 +++ b/Dockerfile.24.04 @@ -237,8 +237,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="docker.io" -LABEL org.opencontainers.image.source="docker.io" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/ubuntu" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/ubuntu" diff --git a/Dockerfile.24.10 b/Dockerfile.24.10 index 2108e82..314d762 100644 --- a/Dockerfile.24.10 +++ b/Dockerfile.24.10 @@ -233,8 +233,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="docker.io" -LABEL org.opencontainers.image.source="docker.io" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/ubuntu" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/ubuntu" diff --git a/Dockerfile.26.04 b/Dockerfile.26.04 index 0ba58b4..c99f071 100644 --- a/Dockerfile.26.04 +++ b/Dockerfile.26.04 @@ -229,12 +229,11 @@ 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/casjaysdev/ubuntu" -LABEL org.opencontainers.image.source="https://docker.io/casjaysdev/ubuntu" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/ubuntu" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${GIT_COMMIT}" -LABEL org.opencontainers.image.source="https://github.com/casjaysdev/ubuntu" -LABEL org.opencontainers.image.documentation="https://github.com/casjaysdev/ubuntu" +LABEL org.opencontainers.image.source="https://github.com/dockersrc/ubuntu" +LABEL org.opencontainers.image.documentation="https://github.com/dockersrc/ubuntu" LABEL com.github.containers.toolbox="false" ENV ENV=~/.bashrc