Hey,
I am setting up a PHP development environment with docker, and because of how slow the shared filesystem is on MacOS, I decided to keep all the source code in the internal docker volume. The app works nice and fast and writing code is not a problem since vscode integrates with docker container very well.
I would like to mount this internal volume on MacOS just to be able to use Finder for browsing and adding / moving / deleting files. What are my options here? Does Docker support mounting internal volumes on MacOS natively? I also looked briefly into exporting the volume over nfs, but it seems that kernel modules are missing in the VM.
thanks!