我正在使用AWS代码管道部署我的dockerized应用程序,但遇到了Docker的一些错误。
错误:
Service 'proxy' failed to build : toomanyrequests: You have reached your pull rate limit.
You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limitdocker-compose-deploy.yml
version: "3.8"
services:
db:
container_name: db
image: "postgres"
restart: always
volumes:
- postgres-data:/var/lib/postgresql/data/
app:
container_name: app
build:
context: .
restart: always
volumes:
- static-data:/vol/web
depends_on:
- db
proxy:
container_name: proxy
build:
context: ./proxy
restart: always
depends_on:
- app
ports:
- 80:8000
volumes:
- static-data:/vol/static
volumes:
postgres-data:
static-data:buildspec.yml
phases:versions.
build:
commands:
- docker-compose -f docker-compose-deploy.yml up --build发布于 2022-03-03 12:50:06
码头集线器限制码头形象下载的数量(“拉”)根据帐户类型的用户拉动图像。拉费率限制是基于单个IP地址的。对于匿名用户,利率限制设置为每个IP地址每6小时100次拉票。对于经过身份验证的用户,每6小时有200次拉票。有付费码头订阅的用户没有限制。
码头专业和码头团队帐户使5,000拉在24小时内从码头枢纽。
请阅读:
https://stackoverflow.com/questions/71337181
复制相似问题