I'm running an API in cloud run and I want to know if it's possible to mount a DB file from cloud storage to my cloud run container so that I can use that DB file for querying.
For example: I have geolite database file in my cloud storage and I want to mount it everytime a new container is launched by the cloud run so I can query the location.
(This is just an example but storage file can be different like sqlite and bigger & it could be getting updated constantly by other service).
Thanks!