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
werf run --docker-options="-v $(pwd)/out:/out" -- cp /some/file /out
Use --report-path option with werf build or werf converge command to get built docker image name. Then use docker cp command to copy target file into host:
There is also werf kube-run with options for this:
--copy-from=[]
Copy file/dir from container to local machine after user command execution. Example: "/from/file:to". Can be specified multiple times. Can also be defined with "$WERF_COPY_FROM_*", e.g. "WERF_COPY_FROM_1=from:to".
--copy-to=[]
Copy file/dir from local machine to container before user command execution. Example: "from:/to/file". Can be specified multiple times. Can also be defined with "$WERF_COPY_TO_*", e.g. "WERF_COPY_TO_1=from:to".
Is there some best practice to expose for example junit.xml?
The text was updated successfully, but these errors were encountered: