Created
April 3, 2015 14:01
-
-
Save sandlbn/ab33eee8f99d00286722 to your computer and use it in GitHub Desktop.
docker-registry.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
description "Docker Registry" | |
start on runlevel [2345] | |
stop on runlevel [016] | |
respawn | |
respawn limit 10 5 | |
script | |
exec gunicorn --access-logfile /var/log/docker-registry/access.log --error-logfile /var/log/docker-registry/server.log -k gevent --max-requests 100 --graceful-timeout 3600 -t 3600 -b 0.0.0.0:5000 -w 8 docker_registry.wsgi:application | |
end script | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment