Sign inSign up

kingster/requestbin

By kingster

Updated about 1 year ago

Python3 version of Requestbin

Image
0

1.5K

kingster/requestbin repository overview

Requestbin

RequestBin gives you a URL that will collect requests made to it and let you inspect them in a human-friendly way. Use RequestBin to see what your HTTP client is sending or to inspect and debug webhook requests.

Quick start

Launch your own RequestBin instance with docker

docker run -p "8000:8000" kingster/requestbin:latest

Run it with Redis Persistance

Pull the image down from the Docker central repository:

$ docker run -d -p "8000:8000" kingster/requestbin

This will start the container with the requestbin app available externally on port 8000. To run the image with a Redis back end, you need to startup redis first. Preferably with a mounted volume.

$ docker run -d -v /usr/data:/data \
      --name some-redis  \
      redis redis-server --appendonly yes

$ docker run -d --link some-redis:redis  \
	  -e "REALM=prod" -e REDIS_URL="//redis:6379" \
	  -p "8000:8000" \
	  kingster/requestbin

Tag summary

Content type

Image

Digest

sha256:df16bb846

Size

68.1 MB

Last updated

about 1 year ago

docker pull kingster/requestbin