Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 811 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 811 Bytes

Cookiecutter Docker Container

Pull Cookiecutter templates in a Docker container without setting up a Python environment.

Forked from Audreyr docker-cookiecutter.

Docker Hub repo available here.

Usage

A sample command:

Change the TEMPLATE variable to your Cookiecutter repository.

docker run -it --rm \
	-e LC_ALL=C.UTF-8 \
	-e TEMPLATE=gh:pawamoy/cookiecutter-awesome \
	-e OUT_DIR=/cookie \
	-v $(PWD):/cookie \
	michaeltinsley/cookiecutter

Contributing

To set it up for local development:

git clone https://github.com/michaeltinsley/docker-cookiecutter.git
cd docker-cookiecutter
docker build -t cookiecutter .
docker run -t cookiecutter