Reputation: 719
I am running tests based on Robotframework.
I need to build container without tests ( container has to contain only needed soft and tools) and then use a mount point to make the tests available inside the container (using docker run -d -it -v "$(pwd)"/target:/app) so that container won't actually contain any of the tests and won't need to be rebuilt after writing new tests.
It works on Ubuntu, but does not works on Mac. Is there a way how to run tests outside from container on Mac?
Upvotes: 0
Views: 394
Reputation: 719
Fixed.
I was not able to see files because of I've created docker machine by running docker-machine create default --driver xhyve --xhyve-experimental-nfs-share.
When I've recreated by docker-machine create default --driver xhyve --xhyve-experimental-nfs-share=true everything is fine.
Upvotes: 2