Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.23 KB

README.md

File metadata and controls

37 lines (25 loc) · 1.23 KB

Cookiecutter docker image

Build Status

This is unofficial docker image for Cookiecutter

Cookiecutter

Usage

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!