Reputation: 81
I want to copy my project files/folders that contains all my python-related files and subfolders to add to the docker var container
Docker container-->Files-->var
Upvotes: 1
Views: 1310
Reputation: 11036
You did not provide much information, so I try to guess what you need.
I think you should use Docker volume mounting by:
docker run -v /local/project/folder:/var/project/folder # ... other options ...
Upvotes: 1