Uploading a document to sandbox environment

I managed to succesfully upload a doc to the docker sandbox environment via the api which returns a message ID.

However where can I find the uploaded file on the host if any?
I tried
E:\mesh\mesh-sandbox-develop\src\mesh_sandbox\store\data\mailboxes\X26ABC2
and X26ABC1

Hi … it really depends how you you’ve set the sandbox up … it may be in STORE_MODE=memory by default ( so it will just store all data in memory … )

here’s some possible docker-compose file settings to put the sandbox in file STORE_MODE and mount a local directory from the host

environment:

  - STORE_MODE=file
  - FILE_STORE_DIR=/mesh_file_store
volumes:
  - /tmp/mesh:/mesh_file_store