Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 998 Bytes

README.md

File metadata and controls

38 lines (24 loc) · 998 Bytes

Requestbin

Starts a requestbin server on port 80.

Usage

With Docker-Compose

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

Running a container by hand

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

Prior Art

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.