Cookiecutter Docker =================== ## What is this repo? This repo is a coookiecutter recipe for spinning up dockerized projects. I use this recipe on every project that I spin up for encapsulating everything into a docker container that I can share with other devs easily. ## How do I use it? First install [CookieCutter][1] and then use cookie cutter to spin up a new project from this repo. ``` $ cookiecutter https://github.com/thornycrackers/cookiecutter_docker.git ``` After that if you have `docker` and `make` installed you can simply use the following Makefile commands to start running the project. ```bash $ make build $ make up $ make enter $ make down $ make clean ``` - build: Build the docker container - up: Spin up the docker container - enter: Enter the running container - down: Spin down the container but down remove - clean: Remove a stopped container