skip to Main Content

docker: error pulling image configuration: Get https://production.cloudflare.docker.com Forbidden

When I run: docker run hello-world Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world 2db29710123e: Pulling fs layer docker: error pulling image configuration: Get https://production.cloudflare.docker.com/registry-v2/docker/registry/v2/blobs/sha256/fe/feb5d8asdf678asd9fsdf7a9sd6f789sa6d7f8b825965ba48de054caab5ef356dc6b3412/data?verify=161234117-fZrnvGSb678afASf87g7dfd7InfY%3D: Forbidden. I am running docker from behind a proxy and have done the…

VIEW QUESTION

nginx grpc_pass works only on root

This works: server { listen 5005 http2; location / { grpc_pass grpc://my_app:5001; } default_type application/grpc; } this doesnt work: server { listen 5005 http2; location /test { grpc_pass grpc://my_app:5001; } default_type application/grpc; } I receive logs when I go to…

VIEW QUESTION
Back To Top
Search