I have docker setup on my Windows system. The source code of the application is available at C:\\Application\\source
location.
I want this information to be ava
In the Oracle Virtual box, I've shared the folder C:\Application
That is not enough. You need to modify your boot2docker image in order for the TinyCore Linux session to mount the shared path (only C:\Users\
is mounted by default as /c/Users/
)
See "Docker Compose Mount Window Folder"
Edit/create (as
root
)/mnt/sda1/var/lib/boot2docker/bootlocal.sh
, (sda1 may be different for you)Add:
mkdir -p
mount -t vboxsf -o defaults,uid=`id -u docker`,gid=`id -g docker`
(the mount might need umask option as well)