I have been using Docker to successfully run a number of containers/images (Gnina, Diffdock, Chameleon etc.) and started to look on how I could integrate these in my Knime admet worflow.
The handful of google search results point to a limitation of the non-business Knime platform…
I have used python nodes to call specific executables (with bespoke python envs I should add).
Docker images have in built envs so that dependencies are no longer an issue.
In order to be able to call a specific program to perform a task within a python node (done this with Vina), I would have to install the software on my machine thus negating the ease of use of a docker image. Perhaps Knime and/or Docker developers could create a new Docker node being able to call a specific image???
A simple workaround would be to use a Python script node to execute the Docker commands via the subprocess package. Depending on your specific needs, you can build the commands beforehand using string manipulation or an expression.
Below is an example of how to use a string; in this case, the flow variable ‘COMPOSE UP’: