From ca503134ae8ca01bae82d413c4017107a4175a5a Mon Sep 17 00:00:00 2001 From: crccheck Date: Wed, 24 Jun 2015 01:14:53 -0500 Subject: [PATCH] slightly better docs --- README.md | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 964e30d..caa0a50 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,28 @@ Requestbin ========== -https://github.com/Runscope/requestbin - -https://registry.hub.docker.com/u/goldeneggg/centos-requestbin/ -1.503 GB +Starts a [requestbin](https://github.com/Runscope/requestbin) server on port +80. -https://registry.hub.docker.com/u/agaveapi/requestbin/ -not a verified docker image +Usage +----- + +This app is designed to work in conjunction with Redis. There's an example in +the Makefile that looks like: + + docker run -d --name requestbin_redis redis + docker run -d --name requestbin \ + --link requestbin_redis:redis \ + -e REDIS_URL=redis://redis:6379/0 \ + requestbin + + +Prior Art +--------- + +[goldeneggg/centos-requestbin](https://registry.hub.docker.com/u/goldeneggg/centos-requestbin/): +This image is 1.503 GB, compared to 174 MB for mine. + +[agaveapi/requestbin](https://registry.hub.docker.com/u/agaveapi/requestbin/): +Not a verified Docker image.