Apeiron
Members
-
Joined
-
Last visited
Solutions
-
Apeiron's post in virtiofs: Files created by docker on unraid host not visible in guest VM until reboot (caching issue?) was marked as the answerI think I found what I was looking for, and updates were now being reflected in the OS, but still not in real time.
In the XML for the mounted filesystem, I changed to <cache mode='none'.
```
<filesystem type='mount' accessmode='passthrough'>
<driver type='virtiofs' queue='1024'/>
<binary path='/usr/libexec/virtiofsd' xattr='on'>
<cache mode='none'/>
<sandbox mode='chroot'/>
</binary>
<source dir='/mnt/user/development/'/>
<target dir='development'/>
<alias name='fs0'/>
<address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/>
</filesystem>
```
Feels like my idea isn't going to work as I expected, so I just installed docker directly to my VM.