Skip to content

zero-sec/requestbin

 
 

Repository files navigation

Originally Created by Jeff Lindsay

Deploy your own instance using Docker Hub

On the server/machine you want to host this, you'll first need a machine with docker and docker-compose installed, create file docker-compose.yml contains:

version: "3"
services:
  requestbin:
    image: dotzero/requestbin
    environment:
      REALM: prod
      REDIS_URL: "//redis:6379"
    links:
      - redis
    ports:
      - "8000:8000"

  redis:
    image: redis

After that, you could run it with:

$ sudo docker-compose up -d

Build your own instance using Docker

On the server/machine you want to host this, you'll first need a machine with docker and docker-compose installed, then grab the RequestBin source using git:

$ git clone https://github.com/zero-sec/requestbin.git

Go into the project directory and then build and start the containers

$ sudo docker-compose build
$ sudo docker-compose up -d

Your own private RequestBin will be running on this server.

Contributors

License

MIT

About

Inspect HTTP requests. Debug webhooks.

Resources

Stars

Watchers

Forks

Languages

  • CSS 88.6%
  • Python 7.3%
  • HTML 3.8%
  • Dockerfile 0.3%