docker-science / cookiecutter-docker-science

Cookiecutter template for data scientists working with Docker containers
https://docker-science.github.io/
Apache License 2.0
349 stars 80 forks source link

Windows problems #79

Open takahi-i opened 5 years ago

takahi-i commented 5 years ago
takahi-i commented 5 years ago

Could be a good idea to another temalate package for windows users

Pit-Storm commented 4 years ago

In every line in the Makefile where $(PWD) ist used you have to change it to $(CURDIR). This is a make specific env-var which gives the current directory to the script. $(PWD) refers to a created var which holds a command only working in linux/unix shells.

It would be better to use $(CURDIR) in every scripts, instead of export PWD="pwd"

Pit-Storm commented 4 years ago

For the dockerfile problem I only have the solution to comment out lines 14-16. This is not needed in windows environment, because docker desktop manages the file-permissions when bind-mounting a local directory.