hey everyone - is it possible to run a workflow in...
# ask-community
j
hey everyone - is it possible to run a workflow in a docker image outside of the cloud
j
Hey @John Ramirez yes this is possible! If you know the name of your flow you can open a shell and load the flow with something like:
Copy code
from prefect import Flow
f = Flow.load("my-flow")
f.run()