aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2018-03-21 16:53:27 -0600
committerCody Hiar <codyfh@gmail.com>2018-03-21 16:53:27 -0600
commit032ecd8e8cda8f4a90c8c18e85a5a935bf8c4a00 (patch)
treea6fdeaa7e75d80add7313e6f61f5aad3bc25b1c2
parent2714fa4fd500c739d0f2857fcdff849f523a91b4 (diff)
Updating the README
-rw-r--r--README.md18
1 files changed, 17 insertions, 1 deletions
diff --git a/README.md b/README.md
index 3f3e2c6..1a4f2bd 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
Cookiecutter Docker
===================
-### How to use?
+## 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:
@@ -19,3 +19,19 @@ $ 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
+```