https://github.com/crazy-canux/registry
docker registry v2
https://github.com/crazy-canux/registry
docker-image registry
Last synced: 2 months ago
JSON representation
docker registry v2
- Host: GitHub
- URL: https://github.com/crazy-canux/registry
- Owner: crazy-canux
- Created: 2020-06-23T07:46:51.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-10T15:48:31.000Z (about 5 years ago)
- Last Synced: 2025-05-14T15:54:09.344Z (about 1 year ago)
- Topics: docker-image, registry
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# registry
registry used to upgrade docker images on air-gap mode.
***
## How to use
build docker image and deploy with docker
$ make image
$ docker stack deploy -c ./docker-compose.yml registry
***
## How to debug
swagger UI:
http://IP:PORT/docs
ReDoc:
http://IP:PORT/redoc
from cli:
$ uvicorn registry.main:app --reload --host 0.0.0.0 --port 8080 --log-level debug
$ gunicorn -w 2 -k uvicorn.workers.UvicornWorker --log-level debug -b 0.0.0.0:8080 registry.main:app