Redis version 3.2.5 listens to port 6379
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.
Description
Languages
Dockerfile
63.9%
Shell
36.1%