Skip to content

Inspect HTTP requests. Debug webhooks. Originally created by @progrium.

Notifications You must be signed in to change notification settings

Capital-T-Industries/requestbin

 
 

Repository files navigation

We have discontinued the publicly hosted version of RequestBin due to ongoing abuse that made it very difficult to keep the site up reliably. Please see instructions below for setting up your own self-hosted instance.

Originally Created by Jeff Lindsay

License

MIT

Looking to self-host?

Run a prebuilt Docker image hosted on Docker Hub

Run an instance of the RequestBin docker image hosted on Docker Hub; specify the desired port to expose on your server/machine:

1. Create a network

$ docker network create requestbin

2. Run a redis instance on the network

$ docker run --name redis --network requestbin redis -d

3. Run a requestbin instance on the network

$ PORT=8000
$ docker run --name requestbin -p $PORT:8000 --network requestbin clarketm/requestbin -d

Your own private RequestBin instance will be running on the specified port (e.g. http://localhost:8000).

Run with a single command using Docker-Compose

$ docker-compose -f <(curl "https://raw.githubusercontent.com/Capital-T-Industries/requestbin/master/docker-compose.yml") up -d

Contributors

About

Inspect HTTP requests. Debug webhooks. Originally created by @progrium.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 87.7%
  • Python 7.3%
  • HTML 4.7%
  • Dockerfile 0.3%