Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 752 Bytes

README.md

File metadata and controls

38 lines (28 loc) · 752 Bytes

exfi-docker

Build a Docker container with all the tools to execute exfi

How to install

docker build --rm --tag exfi:1.5.6 github.com/jlanga/exfi-docker

How to run each command

# Build
docker run --rm exfi:1.5.6 build_baited_bloom_filter --help

# Create Splice Graph
docker run --rm exfi:1.5.6 build_splice_graph --help

# Stay inside the container
docker run -it --rm exfi:1.5.6

Don't forget to mount your folder inside and use the correct user permissions!

docker run \
    --rm \
    --volume $PWD:$PWD \
    --user "$UID:$GID" \
    exfi:1.5.6  \
    build_splice_graph --help

Contact info

Submit issues here or in the jlanga/exfi repository.

References

jlanga/exfi