0

我正在使用 s3 设置 docker 注册表。

使用类似的键:

s3_access_key: _env:AWS_KEY
s3_secret_key: _env:AWS_SECRET
s3_bucket: some-bucket-name

但是,每次都说现在在存储桶名称中允许使用大写字母时,它都会失败。

  File "/usr/local/lib/python2.7/dist-packages/boto/s3/connection.py", line 58, in check_lowercase_bucketname
    raise BotoClientError("Bucket names cannot contain upper-case " \
BotoClientError: BotoClientError: Bucket names cannot contain upper-case characters when using either the sub-domain or virtual hosting calling format.

有任何想法吗?

4

1 回答 1

0

您还需要设置:

boto_bucket: some-bucket-name

此刻,看来,也别忘了设置

storage_path: <path in the bucket>
于 2013-11-04T08:21:32.357 回答