【问题标题】:bitbucket pipelines can't find postgresql imagebitbucket 管道找不到 postgresql 图像
【发布时间】: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”:没有可用的注册表端点:拉取访问被拒绝,存储库不存在或可能需要授权:服务器消息:不足的范围:授权失败

【问题讨论】:

    标签: bitbucket-pipelines


    【解决方案1】:

    可能是 »postgers:11« 中的错字

    【讨论】:

    • 确实如此。 :) 傻我。
    猜你喜欢
    • 2020-07-22
    • 1970-01-01
    • 1970-01-01
    • 2021-05-25
    • 1970-01-01
    • 1970-01-01
    • 2022-11-02
    • 2019-08-14
    • 1970-01-01
    相关资源
    最近更新 更多