diff options
author | Steve Manuel <nilslice@gmail.com> | 2017-04-14 17:22:50 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2017-04-14 17:22:50 -0700 |
commit | 5c16a90b86e3669320ef4f5e1949358fb901522a (patch) | |
tree | a32acbc0fa525dfe0056d64cfafd37ea4923a690 | |
parent | 6268615c2b4590eb8a0ed47bb98d099d70aa0fba (diff) |
moving docker dir with README to wiki
-rw-r--r-- | docker/README.md | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/docker/README.md b/docker/README.md deleted file mode 100644 index 6b65643..0000000 --- a/docker/README.md +++ /dev/null @@ -1,22 +0,0 @@ -# TODO: remove from here and add to wki - -## Ponzu Docker build - -Ponzu is distributed as a [docker image](https://hub.docker.com/r/ponzu/ponzu/), 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 convenient commands during development of Ponzu core. - -#### Build the docker image. Run from the root of the project. -```bash -# from the root of ponzu: -docker build -t ponzu-dev -``` - -#### Start the image, share the local directory and pseudo terminal (tty) into for debugging: -```bash -docker run -v $(pwd):/go/src/github.com/ponzu-cms/ponzu -it ponzu-dev -pwd # will output the go src directory for ponzu -ponzu version # will output the ponzu version -# make an edit on your local and rebuild -go get github.com/ponzu-cms/ponzu/... -``` |