Skip to content
This repository was archived by the owner on Sep 12, 2018. It is now read-only.

Commit 3172681

Browse files
committed
docker-registry-driver-azure config and docs
Signed-off-by: Ahmet Alp Balkan <[email protected]>
1 parent 32f19cb commit 3172681

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ In the `config_sample.yml` file, you'll see several sample flavors:
6565
1. `local`: stores data on the local filesystem
6666
1. `s3`: stores data in an AWS S3 bucket
6767
1. `ceph-s3`: stores data in a Ceph cluster via a Ceph Object Gateway, using the S3 API
68+
1. `azure`: stores data in an Microsoft Azure Blob Storage
6869
1. `dev`: basic configuration using the `local` flavor
6970
1. `test`: used by unit tests
7071
1. `prod`: production configuration (basically a synonym for the `s3` flavor)
@@ -264,6 +265,7 @@ To use and install one of these alternate storages:
264265

265266
Currently, we are aware of the following storage drivers:
266267

268+
* [azure](https://github.com/ahmetalpbalkan/docker-registry-driver-azure)
267269
* [elliptics](https://github.com/noxiouz/docker-registry-driver-elliptics)
268270
* [swift](https://github.com/bacongobbler/docker-registry-driver-swift)
269271
* [gcs](https://github.com/dmp42/docker-registry-driver-gcs)

config/config_sample.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,15 @@ s3: &s3
8989
boto_port: _env:AWS_PORT
9090
boto_calling_format: _env:AWS_CALLING_FORMAT
9191

92+
93+
azureblob: &azureblob
94+
<<: *common
95+
storage: azureblob
96+
azure_storage_account_name: _env:AZURE_STORAGE_ACCOUNT_NAME
97+
azure_storage_account_key: _env:AZURE_STORAGE_ACCOUNT_KEY
98+
azure_storage_container: _env:AZURE_STORAGE_CONTAINER:registry
99+
azure_use_https: _env:AZURE_USE_HTTPS:true
100+
92101
# Ceph Object Gateway Configuration
93102
# See http://ceph.com/docs/master/radosgw/ for details on installing this service.
94103
ceph-s3: &ceph-s3

0 commit comments

Comments
 (0)