Issue
I tried to use internal HDD in docker container. I have datasets in HDD to train AI model. And I want to train a model using with codes in container. I can not copy datasets to container because it is too large datasets. How can I connect them. Can I mount HDD, and can I use my datasets as input in container. Any suggestions?
OS: Ubuntu 18.04
Thanks
Solution
Is the command
docker -v (directory of HDD):(directory inside container) <other options.. --name, {image Name} etc>
not working as expected?
The above command will reference the HDD at the directory inside the container you have provided without copying, so be catious about changes as they will be reflected in the HDD's data.
Check this for more information.
Answered By - Tushar Gupta Answer Checked By - Timothy Miller (WPSolving Admin)