The configs and analytic dashboards of our metabase are stored in metabase-data.mv.db, metabase-data.trace.db. This metabase reads from bunch of CSV files for analytics.
All of the above are currently stored in /home/ec2-user/metabase-data/.
The docker command I am using to run metabase is:
docker run -d -p 10001:3000 -v /home/ec2-user/metabase-data:/metabase-data -v /home/ec2-user/metabase-plugins:/plugins -e "MB_DB_FILE=/metabase-data" --name metabase-main metabase/metabase
But now. I need to use AWS EFS to store those mentioned files (metabase-data.mv.db, metabase-data.trace.db and CSVs). How can I amend the above docker command, so that metabase can read from EFS instead of a local folder?