Questions tagged [docker-pull]
50 questions
1
vote
0 answers
How to increase throughput for Docker client pull?
I need Docker pull to be as fast as possible. I'm using an EC2 machine to pull a ~13.2GB from ECR (Amazon container registry) in about 3m10sec (70MB/sec).
Can I tune the Docker client use more system resources (threads, connections) for the pull to…

Gili Nachum
- 5,288
- 4
- 31
- 33
1
vote
1 answer
Why I can't pull a image to dependency proxy from GitLab?
I've tried pull a image to dependency proxy from GitLab, I've read the documentation https://docs.gitlab.com/14.10/ee/user/packages/dependency_proxy/
# .gitlab-ci.yml
image: docker:19.03.12
variables:
DOCKER_HOST: tcp://docker:2375
…

plasticheart
- 57
- 1
- 6
1
vote
0 answers
I am unable to pull a Docker image bigger than 1GB due to two errors `Retrying in 1 second` and `expected HTTP 206 from byte range request`
I have this same problem referred to the question Docker pull gives expected HTTP 206 from byte range request.
I tried to pull raabf/latex-versions:latest. It has 1.89GB. I ran the command docker pull [censored-company-address]/raabf/latex-versions.…

Oo'-
- 203
- 6
- 22
1
vote
2 answers
Does microk8s allow pulling from insecure registry?
For docker pull we can do something like the following so it can pull from a local registry by running docker pull localhost:32000/hello:latest.
{
"insecure-registries" : [
"localhost:32000"
]
}
Is there similar config can be done, such…

jack2684
- 324
- 3
- 15
1
vote
2 answers
How to capture docker pull status
I'm trying to post docker image downloading status to frontend in a real time manner. Currently it can just tell that docker pull is going on. I understand that there could be multiple layers of different sizes and the sizes of layers that haven't…

Yibo Liu
- 71
- 6
1
vote
0 answers
(HTTP code 500) server error - cannot mount volume over existing file, file exists
I have three custom containers in dockerhub. I created them, committed and pushed to my docker hub account. Now I pull the containers and run one by one, and one of them is not working.
This container is based on ngnix image but with custom…

Javier Fernandez
- 11
- 1
1
vote
4 answers
Could not find "AddResource" method when pulling docker images
I am pulling a docker image from docker hub. But it accounts a error. It says that "AddResource" method could not be found:
docker: error adding content digest to lease: sha256:31168c113862cce4cef6b16b20cdef1b126eb755492a6030ca68a9020b7eb657:…

lrouter
- 349
- 1
- 5
- 20
1
vote
1 answer
failed to register layer: re-exec error: exit status 1: output: hcsshim::ProcessBaseLayer \\?\D:\docker\windowsfilter\...: Access is denied
I,m trying to pull image. It successfully downloads, but "Access Denied" errors occurs after extract. I have full folder access to "D:/docker"

Kamil Ibadov
- 1,436
- 2
- 20
- 44
1
vote
1 answer
How can I disable the `docker pull` output in Cloud Build?
I'm using Google Cloud build to do a build of my project and I can't figure out a way to silence the output from Docker while it's pulling the image to use for a given build step. For instance, say I have a cloudbuild.yaml file like so:
steps:
-…

mdirkse
- 51
- 4
1
vote
2 answers
Docker pull hello-world showing successful create but when using docker ps or docker ps -a not shoing images
I used docker ps/docker ps -a/docker ps -n 1 all not showing my first image.
But it after I using docker pull hello-world it saying it installed successfully

yuan gao
- 13
- 2
1
vote
1 answer
Docker Swarm can't download images automatically from privat registry
I'm using a Docker Swarm to run my application stack, most of my images are coming from a private docker registry I host myself (Gitlab CI integration). The problem now is that my swam nodes do not automatically pull the image from the registry I…
user11684966
1
vote
3 answers
Understanding the output of `docker-compose pull`
When I run docker-compose pull for a project with a lot of services, I see output like this:
...
Pulling service1 ... downloading (64.0%)
Pulling service2 ... downloading (79.3%)
Pulling service3 ... downloading (64.0%)
...
The…

planetp
- 14,248
- 20
- 86
- 160
1
vote
1 answer
How to docker pull to a specific server?
I recently developed a Jenkins pipeline that does build and push for multiple projects. Now, I need to pull the built images to a specific server. As in, suppose Server 'A' is my build server and server 'B' is where I need to pull the build images…

mounika
- 75
- 9
1
vote
1 answer
how to mention ubuntu patch version in dockerfile
is it possible to mention ubuntu patch version in dockerfile
e.g. generally to get ubuntu 16.04 we would have following line in the dockerfile
FROM ubuntu:16.04
What I want to do is within 16.04 also there will be patch versions like 16.04.04 and…

ART
- 1,509
- 3
- 29
- 47
1
vote
0 answers
Permission error for pushing docker images in "hub.docker.com" registry
I have created my custom image using mongoclient and ycsb. Trying to push the image in my repo but getting "denied: requested access to the resource is denied" error.
I followed below steps:
$ sudo docker login https://hub.docker.io -u
$…

va1bhav
- 365
- 1
- 5
- 21