diff options
author | Achilleas Pipinellis <axil@gitlab.com> | 2019-04-04 11:11:25 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axil@gitlab.com> | 2019-04-04 11:11:25 +0000 |
commit | 5f3619cb9c65b66674205a4b4bcb72d68953df1c (patch) | |
tree | 37d70c51edc5b4634cd89e4307fd382a2683de18 | |
parent | c7f0a7e30a91c4cf38b5aab3f0cfdd1322e9c581 (diff) | |
download | gitlab-ce-58881-doc-registry-s3-permissions-scopes.tar.gz |
Clean up the alerts58881-doc-registry-s3-permissions-scopes
-rw-r--r-- | doc/administration/container_registry.md | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/doc/administration/container_registry.md b/doc/administration/container_registry.md index 6d631fe4605..7445428d34d 100644 --- a/doc/administration/container_registry.md +++ b/doc/administration/container_registry.md @@ -361,6 +361,10 @@ configuring a different storage driver. By default the GitLab Container Registry is configured to use the filesystem driver, which makes use of [storage path](#container-registry-storage-path) configuration. +NOTE: **Note:** Enabling a storage driver other than `filesystem` would mean +that your Docker client needs to be able to access the storage backend directly. +In that case, you must use an address that resolves and is accessible outside GitLab server. + The different supported drivers are: | Driver | Description | @@ -368,23 +372,16 @@ The different supported drivers are: | filesystem | Uses a path on the local filesystem | | azure | Microsoft Azure Blob Storage | | gcs | Google Cloud Storage | -| s3 | Amazon Simple Storage Service | +| s3 | Amazon Simple Storage Service. Be sure to configure your storage bucket with the correct [S3 Permission Scopes](https://docs.docker.com/registry/storage-drivers/s3/#s3-permission-scopes). | | swift | OpenStack Swift Object Storage | | oss | Aliyun OSS | Read more about the individual driver's config options in the [Docker Registry docs][storage-config]. -> **Note** When using the s3 storage driver, be sure to configure your storage -bucket with the correct [S3 Permission Scopes](https://docs.docker.com/registry/storage-drivers/s3/#s3-permission-scopes) -> -> **Warning** GitLab will not backup Docker images that are not stored on the +CAUTION: **Warning:** GitLab will not backup Docker images that are not stored on the filesystem. Remember to enable backups with your object storage provider if desired. -> -> **Important** Enabling storage driver other than `filesystem` would mean -that your Docker client needs to be able to access the storage backend directly. -So you must use an address that resolves and is accessible outside GitLab server. --- |