Skip to content

crccheck/docker-requestbin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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.