Hi
My current Proxmox setup is pretty simple. My tower has 1 sdd drive (sda) where proxmox is installed, and a 2nd hdd (sdb) that has as NTFS partition and already existing data.
I added sdb2 as a 'directory' in Proxmox to host ISOs & CT templates under /mnt/Files
I also put there every VMs & CTs storage.
When creating a CT I add
and for docker I add
I'd like to share /mnt/Files/Media/Music as an NFS Folder so that I can listen to Music from my Laptop when WFH, alternatively /mnt/Files/NFS and create a soft(or hard?) link to /mnt/Files/Media/Music .
I obviously don't want to host the NFS drive from my Proxmox host directly and I don't own a NAS which would make life easier.
The options I think I have are:
Creating a CT and hosting a NFS server from docker
From my research this looks not like a great idea for several reasons:
- Docker from a CT is not recommended, even though I do it and it works fine for my needs
- In order to get NFS working from Docker I'd need to create a privileged CT
Creating a VM and hosting a NFS server from there directly, or with Docker
The only issue I have here that I didn't understand how to mount /mnt/Files to a VM.
The only option I found searching online was to mount a NFS Folder to a VM, but I don't have an NFS Server or Folder, I want to create one
Another options I thought of abstractly which may work (but not sure) is:
1. Creating a new ext3 partition with the free space I have in sdb
2. mounting to host, moving my files, unmount it again
3. passing it through or mounting it to some VM with either some NAS OS (TrueNAS, OMV,...) or just some linux
4. sharing the media folder via NFS
What do you think my options are?
Thanks!
My current Proxmox setup is pretty simple. My tower has 1 sdd drive (sda) where proxmox is installed, and a 2nd hdd (sdb) that has as NTFS partition and already existing data.
I added sdb2 as a 'directory' in Proxmox to host ISOs & CT templates under /mnt/Files
I also put there every VMs & CTs storage.
When creating a CT I add
Code:
mp0: /mnt/Files/data,mp=/data
Code:
mp1: /mnt/Files/docker,mp=/var/lib/docker/
I'd like to share /mnt/Files/Media/Music as an NFS Folder so that I can listen to Music from my Laptop when WFH, alternatively /mnt/Files/NFS and create a soft(or hard?) link to /mnt/Files/Media/Music .
I obviously don't want to host the NFS drive from my Proxmox host directly and I don't own a NAS which would make life easier.
The options I think I have are:
Creating a CT and hosting a NFS server from docker
From my research this looks not like a great idea for several reasons:
- Docker from a CT is not recommended, even though I do it and it works fine for my needs
- In order to get NFS working from Docker I'd need to create a privileged CT
Creating a VM and hosting a NFS server from there directly, or with Docker
The only issue I have here that I didn't understand how to mount /mnt/Files to a VM.
The only option I found searching online was to mount a NFS Folder to a VM, but I don't have an NFS Server or Folder, I want to create one

Another options I thought of abstractly which may work (but not sure) is:
1. Creating a new ext3 partition with the free space I have in sdb
2. mounting to host, moving my files, unmount it again
3. passing it through or mounting it to some VM with either some NAS OS (TrueNAS, OMV,...) or just some linux
4. sharing the media folder via NFS
What do you think my options are?
Thanks!