From 7effdd3d7491bf88edb43d76de6e30e7f7b17e28 Mon Sep 17 00:00:00 2001 From: Hamada Salhab Date: Tue, 8 Oct 2024 19:48:31 +0300 Subject: [PATCH] feat(memory-store): Make `cozo_data` volume external (#616) > [!IMPORTANT] > Set `cozo_data` volume to external in `docker-compose.yml`. > > - **Volumes**: > - Set `cozo_data` volume to `external: true` in `docker-compose.yml`, aligning with `cozo_backup`. > > This description was created by [Ellipsis](https://www.ellipsis.dev?ref=julep-ai%2Fjulep&utm_source=github&utm_medium=referral) for 017823fcd989eaf1b242f11a9924c7f5910bfb21. It will automatically update as commits are pushed. --- memory-store/docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/memory-store/docker-compose.yml b/memory-store/docker-compose.yml index 2adf50e81..e785a3526 100644 --- a/memory-store/docker-compose.yml +++ b/memory-store/docker-compose.yml @@ -33,5 +33,6 @@ services: volumes: cozo_data: + external: true cozo_backup: external: true \ No newline at end of file