Docker image for httpbin(with gevent and Gunicorn).
378
Docker image for httpbin(with gevent and Gunicorn).
docker run -d -p 8000:8000 --name httpbin strahe/httpbin
docker run -d -p 80:8000 --name httpbin strahe/httpbin
docker run -d -p 8000:8000 -e "GUNICORN_WORKERS=4" --name httpbin strahe/httpbin
You can specify -e "GUNICORN_${GUNICORN_CONFIG_NAME}=VALUE" with docker run options to config Gunicorn.
docker run -d -p 8000:8000 -e "GUNICORN_WORKERS=4" -e "GUNICORN_MAX_REQUESTS=100" -e "GUNICORN_TIMEOUT=30" --name httpbin strahe/httpbin
For more about Gunicorn configuration, see:http://docs.gunicorn.org/en/stable/settings.html
Content type
Image
Digest
Size
82.9 MB
Last updated
almost 10 years ago
docker pull strahe/httpbin