This is unofficial docker image for Cookiecutter
From git:
# Create project from the cookiecutter-pypackage.git repo template
# You'll be prompted to enter values.
# Then it'll create your Python package in the current working directory,
# based on those values.
$ docker run --rm -it --volume "$PWD":/workdir -u $(id -u):$(id -g) jetexe/cookiecutter https://github.com/audreyfeldroy/cookiecutter-pypackage
From directory:
# Create project from the cookiecutter-pypackage.git repo template
# You'll be prompted to enter values.
# Then it'll create your Python package in the current working directory,
# based on those values.
$ docker run --rm -it --volume "$PWD":/workdir --volume /path/to/template:/tmp/template -u $(id -u):$(id -g) jetexe/cookiecutter /tmp/template
Welcome to your issues!