Sign inSign up

isayme/requestbin

By isayme

Updated 5 months ago

Image
1

2.5K

isayme/requestbin repository overview

RequestBin

A requestbin in Golang.

Preview

https://requestbin.isayme.top

Usage

config file

config with yaml format:

http:
  port: 3000
logger:
  level: info
mongo:
  # mongodb to save requests
  uri: mongodb://127.0.0.1:27017/requestbin

docker

docker run -it --rm -p 3000:3000 -v /path/to/config.yaml:/etc/requestbin.yaml isayme/requestbin:latest

docker compose

services:
  requestbin:
    container_name: requestbin
    image: isayme/requestbin:latest
    ports:
      - 3000:3000
    volumes:
      - /path/to/config.yaml:/etc/requestbin.yaml
    restart: unless-stopped

Tag summary

Content type

Image

Digest

sha256:b1f05a5fa

Size

11.6 MB

Last updated

5 months ago

docker pull isayme/requestbin