Adjust image repository for T3 docs rendering

They moved from docker hub to GitHub registry.
This commit is contained in:
Daniel Siepmann 2023-05-11 08:31:33 +02:00
parent 80839ecc22
commit a7d4a5c51b
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

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