Skip to content

Commit 2909f60

Browse files
[TASK] Add usermapping for linux (#317)
Co-authored-by: Ines Willenbrock <[email protected]>
1 parent 8e7c6c9 commit 2909f60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ help: ## Displays this list of targets with descriptions
66
.PHONY: docs
77
docs: ## Generate projects documentation (from "Documentation" directory)
88
mkdir -p Documentation-GENERATED-temp
9-
docker run --rm --pull always -v "$(shell pwd)":/project -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation
9+
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
1010

1111
.PHONY: test-docs
1212
test-docs: ## Test the documentation rendering
1313
mkdir -p Documentation-GENERATED-temp
14-
docker run --rm --pull always -v "$(shell pwd)":/project -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --fail-on-log
14+
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
1515

1616
.PHONY: fix
1717
fix: rector fix-cgl## Fix PHP coding styles

0 commit comments

Comments
 (0)