cookiecutter-docker-science icon indicating copy to clipboard operation
cookiecutter-docker-science copied to clipboard

Windows problems

Open takahi-i opened this issue 6 years ago • 3 comments

  • pwd command is missing
  • -u option cases a problem in docker/Dockerfile

takahi-i avatar Jan 16 '19 08:01 takahi-i

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

takahi-i avatar Jan 17 '19 01:01 takahi-i

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 avatar Mar 25 '20 13:03 Pit-Storm

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.

Pit-Storm avatar Mar 25 '20 13:03 Pit-Storm