From a7d4a5c51b32808fd6996bbeabd30fa4facfad98 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Thu, 11 May 2023 08:31:33 +0200 Subject: [PATCH] Adjust image repository for T3 docs rendering They moved from docker hub to GitHub registry. --- .../custom/typo3-documentation-rendering/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/home/packages/custom/typo3-documentation-rendering/default.nix b/home/packages/custom/typo3-documentation-rendering/default.nix index 03294bd..03e2cf1 100644 --- a/home/packages/custom/typo3-documentation-rendering/default.nix +++ b/home/packages/custom/typo3-documentation-rendering/default.nix @@ -10,14 +10,15 @@ writeShellApplication { podman ]; - # See: https://t3docs.github.io/DRC-The-Docker-Rendering-Container/07-To-be-sorted/quickstart.html#build-html-with-plain-docker-commands + # Repository: https://github.com/t3docs/DRC-The-Docker-Rendering-Container + # Documentation: https://t3docs.github.io/DRC-The-Docker-Rendering-Container/07-To-be-sorted/quickstart.html#build-html-with-plain-docker-commands text = '' mkdir -p Documentation-GENERATED-temp podman \ run --rm \ -v "$(pwd)":/PROJECT:ro \ -v "$(pwd)/Documentation-GENERATED-temp":/RESULT \ - docker.io/t3docs/render-documentation:latest \ + ghcr.io/t3docs/render-documentation:latest \ makehtml ''; }