From 5bb77b54eb1e3518f382e5ea33f814a9c2a0e6e8 Mon Sep 17 00:00:00 2001 From: Ines Willenbrock <44277221+ineswillenbrock@users.noreply.github.com> Date: Sun, 31 Aug 2025 14:23:41 +0200 Subject: [PATCH] [TASK] Add usermapping for linux --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 43290a6..89c245e 100644 --- a/Makefile +++ b/Makefile @@ -44,9 +44,9 @@ test: test-lint test-cgl phpstan .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 --fail-on-log + 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 --fail-on-log