From 7c188a717b700fec171e00b1638046283030cc11 Mon Sep 17 00:00:00 2001 From: Ines Willenbrock <44277221+ineswillenbrock@users.noreply.github.com> Date: Sun, 31 Aug 2025 15:11:43 +0200 Subject: [PATCH] [TASK] Add usermapping for linux --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ad003a7..0dc4943 100644 --- a/Makefile +++ b/Makefile @@ -7,10 +7,10 @@ help: ## Displays this list of targets with descriptions .PHONY: docs docs: ## Generate projects docs (from "Documentation" directory) mkdir -p Documentation-GENERATED-temp - docker run --rm --pull always -v "$(shell pwd)":/project -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation + docker run --user $(shell id -u):$(shell id -g) --rm --pull always -v "$(shell pwd)":/project -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation .PHONY: test-docs test-docs: ## Test the documentation rendering mkdir -p Documentation-GENERATED-temp - docker run --rm --pull always -v "$(shell pwd)":/project -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --minimal-test + docker run --user $(shell id -u):$(shell id -g) --rm --pull always -v "$(shell pwd)":/project -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --minimal-test