aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 1a4f2bd909fd5124e4ea69f61265d890d882964d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Cookiecutter Docker
===================

## Step 1: Generate a Project

This project is a template for kickstarting my projects. It uses cookiecutter
which is a python module you can install with pip:

```
$ pip install cookiecutter
```

Then to start a new project simply call cookiecutter and supply the address of
this repo:

```
$ cookiecutter https://github.com/thornycrackers/cookiecutter_docker.git
```

You will be prompted answer a couple questions about your project and then after
that you will be ready to rock and roll.

## Step 2: Start using docker

This project assumes you already have docker installed. After you create you
project you can cd into and run `make` to see a list of commands. To build the
container run.

```
make up
```

And give it a minute to build. After that you can enter the running container:

```
make enter
```