summaryrefslogtreecommitdiff
path: root/docker/README.md
diff options
context:
space:
mode:
authorkmeister <kris@aliencom.net>2017-04-11 14:43:25 -0400
committerkmeister <kris@aliencom.net>2017-04-11 14:48:34 -0400
commitf56f81bf42b8b738839b0cd3a3b9603322152e5d (patch)
treed2f8b82ed9058632690347957f437ac6e86dca4b /docker/README.md
parent3f1d6b5df128973eb7c4c8a92c2b34fde2fb1ba0 (diff)
#72 docker file building ponzu
Diffstat (limited to 'docker/README.md')
-rw-r--r--docker/README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/docker/README.md b/docker/README.md
new file mode 100644
index 0000000..89c20f4
--- /dev/null
+++ b/docker/README.md
@@ -0,0 +1,18 @@
+## Ponzu Docker build
+
+Ponzu is distributed as a docker image **NEEDS LINK**, which aids in docker deployment. The Dockerfile in this directory is used by ponzu to generate the docker image which contains the ponzu executable.
+
+### The following are convient commands during development of Ponzu.
+
+#### Build the docker image. Run from the root of the project.
+```bash
+# from the root of ponzu:
+docker build -f docker/Dockerfile -t ponzu-dev .
+```
+
+#### Start the image and SSH into for debugging:
+```bash
+docker run -it ponzu-dev
+pwd #will output /ponzu
+ponzu version #will output the ponzu version
+``` \ No newline at end of file