Multiple mounts in one app

One of my apps require two different volumes to persist data, one for the core db and one for an image file system storage. I currently have a [mounts] section with source + destination, how could I have a second mounted volume?

As far as I’m aware, you can only mount one.

Assuming that’s still the case you could maybe create another app for your image file storage. And so then your image storage volume would be attached/mounted to that app. How that would work is up to you e.g you could make S3-style storage for your image files with Minio, based on this guide:

1 Like