You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I created my custom typo3-docs:local docker container via:
docker build -t typo3-docs:local .
That works. However when I call this:
docker run --rm --user=$(id -u):$(id -g) --volume ${PWD}:/project typo3-docs:local --version
I would expect the output showing the version of the called entrypoint.sh marker, in the end running this inside the container:
/opt/guides/vendor/bin/guides --version
That works if I execute it in my manual shell. But even when I add the output to the entrypoint.sh file, I can see that --version is passed along, but still it doesn't seem to take effect:
# ... snippet of entrypoint.sh at the endecho"Inline bash execution with commands $@"echo sh -c "$@"
sh -c "$@"
This yields:
Inline bash execution with commands /opt/guides/vendor/bin/guides --version
sh -c /opt/guides/vendor/bin/guides --version
0/10 [>---------------------------] 0%
In menu_doc.html.twig line 6:
An exception has been thrown during the rendering of a template ("No root document entry was found").
In ProjectNode.php line 133:
No root document entry was found
run [--output OUTPUT] [--input-file INPUT-FILE] [--input-format INPUT-FORMAT] [--output-format OUTPUT-FORMAT] [--log-path LOG-PATH] [--fail-on-log] [--theme THEME] [--progress|--no-progress] [--] [<input>]
(Don't mind the error message, that is due to Issue #53)
The text was updated successfully, but these errors were encountered:
I created my custom typo3-docs:local docker container via:
docker build -t typo3-docs:local .
That works. However when I call this:
docker run --rm --user=$(id -u):$(id -g) --volume ${PWD}:/project typo3-docs:local --version
I would expect the output showing the version of the called
entrypoint.sh
marker, in the end running this inside the container:/opt/guides/vendor/bin/guides --version
That works if I execute it in my manual shell. But even when I add the output to the
entrypoint.sh
file, I can see that--version
is passed along, but still it doesn't seem to take effect:This yields:
(Don't mind the error message, that is due to Issue #53)
The text was updated successfully, but these errors were encountered: