Starts a requestbin server on port 80.
If you check out this repository locally or grab the docker-compose.yml, you can get a server running on port 8000 quickly with:
docker-compose up
If you wanted to run this manually, it would look something like:
docker run -d --name requestbin_redis redis
docker run -d --name requestbin \
--link requestbin_redis:redis \
-e REDIS_URL=redis://redis:6379/0 \
crccheck/requestbin
goldeneggg/centos-requestbin: This image is 1.503 GB, compared to 176 MB for mine.
agaveapi/requestbin: very similar to this project now, only uses a fork.