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 ''; }