You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The -b SRC:DST option is documented as bind-mounting a host path into the guest, but the source path is actually resolved inside the guest. This makes host-to-guest bind mounts non-functional as advertised in the Quick Start section of the README.
Expected behavior
-b /home/user/data:/mnt/data should make /home/user/data (host) accessible at /mnt/data (guest)
Actual behavior
When the source path exists inside the guest, kbox mounts guest's source into target. When the source path does not exist inside the guest, it triggers an error "bind mount -> : No such file or directory"
The
-b SRC:DSToption is documented as bind-mounting a host path into the guest, but the source path is actually resolved inside the guest. This makes host-to-guest bind mounts non-functional as advertised in the Quick Start section of the README.Expected behavior
-b /home/user/data:/mnt/datashould make/home/user/data(host) accessible at/mnt/data(guest)Actual behavior
When the source path exists inside the guest, kbox mounts guest's source into target. When the source path does not exist inside the guest, it triggers an error "bind mount -> : No such file or directory"
Case 1: source path exists inside the guest
Case 2: source path does not exist inside the guest