Docker private image library Docker private image library and Alibaba Cloud object storage OSS Image management is the core of Docker. In order to meet the needs of sharing images within an enterprise or organization, Docker officially established an open source project docker-registry on Github, which is specifically used to build a private Docker image library. Quickly start the docker-registry that supports Alibaba Cloud Object Storage OSS You can download and install docker-registry from https://github.com/docker/docker-registry and install the OSS driver via pip: pip install docker-registry-driver-alioss Run docker registry docker run -e OSS_BUCKET=-e STORAGE_PATH=/docker/ -e OSS_KEY=-e OSS_SECRET=-p 5000:5000 -d chrisjin/registry:ali_oss Configure config.yml: ```local: &local <<: *common storage: alioss storage_path: _env:STORAGE_PATH:/devregistry/ oss_bucket: _env:OSS_BUCKET[:default_value] oss_accessid: _env:OSS_KEY[:your_access_id] oss_accesskey: _env:OSS_SECRET[:your_access_key]``` Start docker-registry: DOCKER_REGISTRY_CONFIG=[your_config_path] gunicorn -k gevent -b 0.0.0.0:5000 -w 1 docker_registry.wi:application The above is all the content and steps of introducing Docker private image library and Alibaba Cloud Object Storage OSS. Thank you for your support to 123WORDPRESS.COM. You may also be interested in:
|
<<: Example of how to create a database name with special characters in MySQL
>>: Summary of Vue's monitoring of keyboard events
Note When developing an article display list inte...
Download and install MySQL 8.0.22 for your refere...
Table of contents Overview Vuex four major object...
border-radius:10px; /* All corners are rounded wi...
Recently, I need to query all the fields in a rel...
Recently, some friends said that after installing...
Install using the MSI installation package Downlo...
Button is used quite a lot. Here I have sorted ou...
These introduced HTML tags do not necessarily ful...
1. Check the character set of the database The ch...
Translated from Docker official documentation, or...
The relationship between Tomcat logs A picture is...
Before we use JSX to build a component system, le...
Preface In the actual use of the database, we oft...
Preface In the daily development or maintenance o...