本篇文章给大家带来的内容是关于docker 私有镜像库与阿里云对象存储 oss,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
docker私有镜像库
docker 私有镜像库与阿里云对象存储 oss
镜像管理是 docker 的核心,为了满足企业或组织内部分享镜像,docker 官方在 github上 建立了一个开源项目 docker-registry,专门用于自建 docker 的私有镜像库。
快速启动支持阿里云对象存储 oss 的 docker-registry
您可以从 https://github.com/docker/docker-registry 下载并安装 docker-registry,通过 pip 安装 oss driver:
pip install docker-registry-driver-alioss
运行 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
配置 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]```
启动 docker-registry:
docker_registry_config=[your_config_path] gunicorn -k gevent -b 0.0.0.0:5000 -w 1 docker_registry.wi:application
以上就是关于docker 私有镜像库与阿里云对象存储 oss的详细内容。