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 want to perform the docker flag -v in my Starklark code to get some reporting files from my container (called A), but the option files in ServiceConfig can't do that.
Current Solution
Use plan.wait(A, some_commands) to execute commands in container A.
Use plan.store_service_files to retrieve files from A.
Add an alpine service and mount these files.
Use kurtosis files download to download the files locally.
While this approach works, it seems verbose and could be streamlined.
Desired behaviour
Something perform the docker flag -v with rw mode.
How important is this to you?
Critical; Kurtosis is unusable for me without it.
What area of the product does this pertain to?
Starlark
The text was updated successfully, but these errors were encountered:
Background & motivation
I want to perform the docker flag
-v
in my Starklark code to get some reporting files from my container (calledA
), but the optionfiles
inServiceConfig
can't do that.Current Solution
plan.wait(A, some_commands)
to execute commands in containerA
.plan.store_service_files
to retrieve files fromA
.alpine
service and mount these files.kurtosis files download
to download the files locally.While this approach works, it seems verbose and could be streamlined.
Desired behaviour
Something perform the docker flag
-v
withrw
mode.How important is this to you?
Critical; Kurtosis is unusable for me without it.
What area of the product does this pertain to?
Starlark
The text was updated successfully, but these errors were encountered: