Skip to content

Instantly share code, notes, and snippets.

@kevinmcaleer
Last active December 17, 2021 13:46
Show Gist options
  • Save kevinmcaleer/24a4478790790c4c27aa551b1f7df497 to your computer and use it in GitHub Desktop.
Save kevinmcaleer/24a4478790790c4c27aa551b1f7df497 to your computer and use it in GitHub Desktop.
Install a Docker Registry on your own local server

Install your Registry (on your server or locally)

Docker-Registry is a simple Python app, installing it is straight-forward:

git clone https://github.com/dotcloud/docker-registry.git
cd docker-registry
cp config_sample.yml config.yml
pip install -r requirements.txt
gunicorn --access-logfile - --log-level debug --debug 
    -b 0.0.0.0:5000 -w 1 wsgi:application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment