From c3463332259ddb8c88ab0271f1c09a1672f6aaa3 Mon Sep 17 00:00:00 2001 From: alex-clayton-1 Date: Fri, 13 Jun 2025 12:25:28 +0100 Subject: [PATCH] build: Fixed volume paths for mesh-sandbox container in compose.yaml --- compose.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compose.yaml b/compose.yaml index db33be7..8d86e2d 100644 --- a/compose.yaml +++ b/compose.yaml @@ -152,10 +152,10 @@ services: - SSL=no volumes: # mount a different mailboxes.jsonl to pre created mailboxes - - ../mesh-sandbox/src/mesh_sandbox/store/data/mailboxes.jsonl:/app/mesh_sandbox/store/data/mailboxes.jsonl:ro - - ../mesh-sandbox/src/mesh_sandbox/test_plugin:/app/mesh_sandbox/plugins:ro + - ./tests/mesh-sandbox/src/mesh_sandbox/store/data/mailboxes.jsonl:/app/mesh_sandbox/store/data/mailboxes.jsonl:ro + - ./tests/mesh-sandbox/src/mesh_sandbox/test_plugin:/app/mesh_sandbox/plugins:ro # you can mount a directory if you want access the stored messages - - ../mesh-sandbox/messages:/tmp/mesh_store + - ./tests/mesh-sandbox/messages:/tmp/mesh_store networks: - backend