Judging from what I've read in other posts I don't think this is currently possible but what I want to do is write a directory with some logs back to the host when an exception occurs so:
try:
... some thing
except:
# oh no something didn't work!
await client.host().directory("logs").export("/logs")
is there a way to make the directory mounted as writeable?