From 4ac22a22fa3138acc88da8bcf5e975d49b1d9f04 Mon Sep 17 00:00:00 2001 From: Sean Arms <67096+lesserwhirls@users.noreply.github.com> Date: Fri, 16 Jan 2026 13:13:33 -0700 Subject: [PATCH] Migrate from docker.unidata.ucar.edu to docker.io for doc build image --- docs/build.gradle.kts | 2 +- project-files/jenkins/pipelines/docs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/build.gradle.kts b/docs/build.gradle.kts index 1e9a77fbe9..f1d9f1e2e5 100644 --- a/docs/build.gradle.kts +++ b/docs/build.gradle.kts @@ -119,7 +119,7 @@ val docTheme = "unidata-jekyll-docs:${catalogs.named("libs").findVersion("unidata-doc-theme").get().requiredVersion}" val isGitHub = System.getenv("GITHUB_ACTIONS") != null -val imageBaseUrl = if (isGitHub) "ghcr.io/unidata" else "docker.unidata.ucar.edu" +val imageBaseUrl = if (isGitHub) "ghcr.io/unidata" else "docker.io/unidata" val dockerImage = "${imageBaseUrl}/${docTheme}" val siteBuildDir = layout.buildDirectory.dir("site") diff --git a/project-files/jenkins/pipelines/docs b/project-files/jenkins/pipelines/docs index 3caf5c61a2..ce392353c4 100644 --- a/project-files/jenkins/pipelines/docs +++ b/project-files/jenkins/pipelines/docs @@ -8,14 +8,14 @@ pipeline { -e DOCS_UID=$(id -u) \ -v .:/netcdf-java \ -v ./docs/build/site:/site \ - docker.unidata.ucar.edu/unidata-jekyll-docs:0.0.6 build + docker.io/unidata/unidata-jekyll-docs:0.0.6 build ''' } } stage('Publish documentation') { agent { docker { - image 'docker.unidata.ucar.edu/thredds-test-environment:latest' + image 'docker.io/unidata/thredds-test-environment:latest' // Run the container on the node specified at the // top-level of the Pipeline, in the same workspace, // rather than on a new node entirely: