【发布时间】:2023-03-29 23:04:01
【问题描述】:
我的bitbucket-pipeline.yml有关注
image: python:3.8
pipelines:
default:
- step:
caches:
- pip
script:
- pip install virtualenv
- virtualenv venv
- . venv/bin/activate
- pip install -r requirements.txt
- pip install -e .
- cp .env-example .env
- make test
services:
- postgres
- redis
definitions:
services:
postgres:
image: postgers:11
redis:
image: redis
但是,我的 bitbucket 管道总是失败并出现以下错误:
rpc 错误:代码 = 未知 desc = 无法解析图像“docker.io/library/postgers:11”:没有可用的注册表端点:拉取访问被拒绝,存储库不存在或可能需要授权:服务器消息:不足的范围:授权失败
【问题讨论】: