https://prefect.io logo
j

John Ramirez

05/01/2020, 6:00 PM
hey everyone - is it possible to run a workflow in a docker image outside of the cloud
j

josh

05/01/2020, 6:04 PM
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()