Comby Image not supporting configuration files(.TOML)
rahulismyname opened this issue · 1 comments
rahulismyname commented
Hi Everyone, I was trying to invoke comby as a container. Its working as expected when we pass necessary conditions as command line arguments. But when trying with the same docker image for invoking comby with configuration files (.TOML), Its not able to process or find the toml file and throwing error.
rvantonder commented
I suspect you need to mount a directory in the image containing the .toml
and then refer to that path on the command line. Something like docker run -it -v /tmp/host:/tmp/xyz comby 'foo(:[x])' 'bar' -config /tmp/xyz/config.toml
(didn't verify).