Erik Amundson
12/03/2021, 10:26 PMdocker run -v "//.pipe/<named_pipe>://.pipe/<named_pipe>" —rm -it <image>
It also doesn't throw any error when we start the prefect agent with:
prefect agent docker start --label <agent_label> --volume "//.pipe/<named_pipe>://.pipe/<named_pipe>"
but once we try to actually run the workflow it fails with this message:
Internal Server Error ("invalid volume specification: '\\.\pipe\<named_pipe>:\pipe\<named_pipe>:/pipe/<named_pipe>:/pipe/<named_pipe>:rw'")
I'm not really sure why it seems to be duplicating the volume map and removing some of the forward slashes. Is this supported at all? Worst case we can probably subclass the docker agent and hardcode the run_flow()
command but we'd like to avoid having extra code on the agent side.Kevin Kho
Erik Amundson
12/16/2021, 6:50 PMKevin Kho
Anna Geller
Erik Amundson
12/16/2021, 7:29 PMAnna Geller
Erik Amundson
12/16/2021, 7:37 PM