I need to run and wait on the output of a docker c...
# prefect-community
j
I need to run and wait on the output of a docker container as part of my Prefect flow. I see that in Prefect 1.x there is an API for running a docker container and waiting on its result. I don't see a similar API in Prefect 2. Is that coming? Should we use
docker
module for Python instead? Or is there a better way?
k
Yes it hasn’t been ported yet. You could just use the
docker
module. Note it might be unmaintained in the near future so we are exploring what to do, it might be fine for current use
gratitude thank you 1