Skip to content

jetexe/cookiecutter-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

79 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!