This message was deleted.
# ask-for-help
s
This message was deleted.
c
Hi @Neethu , you should be able to use Docker’s data volume to share data between containers, BentoML containers are standard OCI compatible containers and works with regular docker operations
Copy code
docker volume create --name shared-data
docker run -v shared-data:/my_data MY_BENTO_CONTAINER
docker run -v shared-data:/my_data your_second_container
you can also mount it to a different folder
ideally you want to avoid writing to the
src
folder as it containers files the service need, it’s better to write it to a different path for data files
n
Thank you @Chaoyu. I was able to mount it via doccker volume
👍 1