Skip to content

Commit d57c9e1

Browse files
[TASK] Add usermapping for linux (#756)
Co-authored-by: Ines Willenbrock <44277221+ineswillenbrock@users.noreply.github.com>
1 parent 6f51212 commit d57c9e1

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
@@ -7,13 +7,13 @@ help: ## Displays this list of targets with descriptions
77
docs: ## Generate projects documentation (from "Documentation" directory)
88
mkdir -p Documentation-GENERATED-temp
99

10-
docker run --rm --pull always -v "$(shell pwd)":/project -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation
10+
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
1111

1212
.PHONY: test-docs
1313
test-docs: ## Test the documentation rendering
1414
mkdir -p Documentation-GENERATED-temp
1515

16-
docker run --rm --pull always -v "$(shell pwd)":/project -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --fail-on-log
16+
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
1717

1818
.PHONY: test-lint
1919
test-lint: ## Regenerate code snippets

0 commit comments

Comments
 (0)