I'm trying to use the Dockerfile approach to build...
# ask-community
a
I'm trying to use the Dockerfile approach to building a flow's storage. It's been running for several minutes, but I'm not getting any feedback or log messages. Is there a way to get more verbose output?
I run
flow.storage = Docker(...)
and the only output I get is
Copy code
[2020-05-26 13:17:38] INFO - prefect.Docker | Building the flow's Docker storage...
w
you should be seeing log messages for each step in your dockerfile
z
Hi @Adam Roderick, I can confirm that you should be seeing log messages for each step by default. It looks like something's frozen on the Docker daemon side of things-- does this happen consistently?
a
No, it looks to be logging out as intended.
Something must have hung on my first run. Previously I was using the intermediate container method, and saw log messages as expected. Now I'm trying the Dockerfile method
z
Okay, solid! Just to confirm, you're seeing logs as expected now?
a
Yep, all good.
👍 1