Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 763 Bytes

docker.md

File metadata and controls

25 lines (17 loc) · 763 Bytes

<- Back to Index

LRSPipe Docker Container

For ease of deployment, LRSPipe is also distributed as a Docker container available on DockerHub.

The same options as used in the CLI are available as arguments to the container's run command.

Invocation

Start a job with a persistent volume to store job state:

docker run -v xapipe:/xapipe/store -it yetanalytics/xapipe \
    --source-url http://host.docker.internal:8080/xapi \
    --target-url http://host.docker.internal:8081/xapi \
    --job-id myjob

Stop the job with ^C. You can then resume it:

docker run -v xapipe:/xapipe/store -it yetanalytics/xapipe --job-id myjob

<- Back to Index