Can Mopidy use an external USB drive to store media files?

Can Mopidy access media stored on a USB drive? I’d like to move my sound files off of my SD card if possible. I’m currently using Hassio v0.91.2. Mopidy v0.2.7

I saw in /etc/fstab the following:

/dev/cdrom	/media/cdrom	iso9660	noauto,ro 0 0
/dev/usbdisk    /media/usb      vfat    noauto,ro 0 0

So I checked the /media/usb folder and I don’t see any of my files there.

Next, I look a look at the hardware report, I see it lists disks as /dev/sda and /dev/sda1. I tried updating /etc/fstab to add those devices.

For the record, this is how I tried to update the fstab:

/dev/cdrom	/media/cdrom	iso9660	noauto,ro 0 0
/dev/usbdisk    /media/usb      vfat    noauto,ro 0 0
/dev/sda   /media/sda  vfat  noauto,ro 0 0
/dev/sda1  /media/sda1  vfat  noauto,ro 0 0

I also tried adding the folders /media/sda and /media/sda1. Those folders disappeared after a reboot. as well my updates to /etc/fstab. Is there a different way I need to go about doing this?

Thanks for any guidance.