One more question: we are trying to run flows in a docker container locally for testing. I see in the docs that:
• You must configure remote
Storage. Local storage is not supported for Docker.
Does this mean that we need to setup remote storage to test running the flows in the container? I currently have something like the following:
deploy_import_1 = Deployment.build_from_flow(
flow=import_1,
name="import1",
work_queue_name="imports",
schedule=IntervalSchedule(
interval=timedelta(hours=1),
anchor_date=datetime(2021, 1, 1, 2, 30, tzinfo=pytz.UTC)
),
infrastructure=DockerContainer(
image="path_to_image/import-prefect:python3.10",
image_pull_policy="NEVER",
auto_remove=False
)
)
Do I need to include remote storage to test? I am a bit unclear on all the pieces of the puzzle still.