Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmtrs/docker-cookiecutter
Docker image for Cookiecutter
https://github.com/dmtrs/docker-cookiecutter
Last synced: about 1 hour ago
JSON representation
Docker image for Cookiecutter
- Host: GitHub
- URL: https://github.com/dmtrs/docker-cookiecutter
- Owner: dmtrs
- License: bsd-3-clause
- Created: 2021-11-24T19:20:38.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-24T19:23:34.000Z (about 3 years ago)
- Last Synced: 2024-11-09T07:53:58.330Z (about 2 months ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
docker-cookiecutter
===================Docker image for [Cookicutter](https://cookiecutter.readthedocs.io/en/1.7.2/README.html).
> A command-line utility that creates projects from cookiecutters (project templates), e.g. creating a Python package project from a Python package project template.
1. Build
```
docker build -t cookiecutter .
```2. Usage. Example, Use a template to create new project in pwd (project directory with name submitted):
```
docker run --rm -ti -v $(pwd):/usr/src/app/ cookiecutter -o /usr/src/app https://github.com/Kludex/python-template
```