Hi @dormasta,
You can access the Joomla's files by following these steps:
- Start the OS X VM and click on "Open Terminal"
- Edit the
/etc/exports
file to include the /bitnami
folder as an allowed folder to mount remotely
/bitnami/ *(rw,insecure,all_squash,anonuid=1000,anongid=1000,no_subtree_check)
- Open your OS X's terminal and edit the following file
~/.bitnami/stackman/machines/joomla/metadata.json
and add the bitnami volume to the volumes section
...
"volumes": [
{
"id": "root",
"kind": "",
"remoteDir": "/opt/bitnami"
},
{
"id": "bitnami",
"kind": "",
"remoteDir": "/bitnami"
}
],
...
- Stop, close and start the OS X VM for the changes to take effect
- Mount the /bitnami folder in your computer and access the files

We will implement the necessary changes to mount that folder easily in future versions of the solution.