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 was looking at epirust and while reading the documentation to run the engine on my local machine, I realised that there is an issue with the docker commands that are mentioned in the README. The docker command to run the engine is shown as
docker run --rm --name epirust-engine epirust-engine /bin/bash -c 'cargo run --release -- -c config/default.json && ls *.csv'
And the next line mentions that the output data should be copied from the container via
docker cp epirust-engine:/engine/<CSV_FILE> .
The docker cp will not work as the --rm flag in the docker run command will immediately delete the container once the engine has finished running. Either the --rm flag should be removed or there should be a volume mounted to the container to store the output to.
PS: The error message on running the current commands is
The text was updated successfully, but these errors were encountered:
Hi,
I was looking at epirust and while reading the documentation to run the engine on my local machine, I realised that there is an issue with the docker commands that are mentioned in the README. The docker command to run the engine is shown as
And the next line mentions that the output data should be copied from the container via
The
docker cp
will not work as the--rm
flag in thedocker run
command will immediately delete the container once the engine has finished running. Either the--rm
flag should be removed or there should be a volume mounted to the container to store the output to.PS: The error message on running the current commands is
The text was updated successfully, but these errors were encountered: