docker-registry Questions
2
I've pulled a docker image from a private repository to local and trying to scan the local image with trivy image command. It is pulling the database but showing Unauthorized error to access the lo...
Ringhals asked 29/12, 2021 at 8:28
3
Solved
I have 2 Dockerfiles on my Host Machine ( Ubuntu 20.04 ). I am running docker-ce version Docker version 19.03.12, build 48a66213fe with Experimental Features enabled. I am able to build each of the...
Xenolith asked 26/6, 2020 at 10:40
2
Solved
I am using RUN instruction within a Dockerfile to install a rpm
RUN yum -y install samplerpm-2.3
However, I want to pass the value "2.3" as an argument.
My RUN instruction should look something ...
Magavern asked 13/12, 2015 at 17:42
2
I have been trying to pull a docker image; which has been pushed successfully to the private jfrog repository using the same terminal and in same session. There comes no issues while pushing the im...
Ecclesiasticism asked 15/3, 2020 at 21:18
8
I have written a Dockerfile which looks like this
FROM ubuntu:12.04
RUN apt-get update
RUN apt-get install -y wget
Now I'm having a file called abc.txt in my host machine. How can I copy it to ...
Issue asked 26/5, 2015 at 9:46
4
Solved
My Dockerfile has this first step:
FROM python:3.6.10@sha256:6cd232ed00e729b4d4d3aa57c1764dddfab70f616042b7f36536e2c3d70c4c11
The goal of this is to "lock" or "pin" the version of the image.
Fo...
Tresatrescha asked 3/5, 2020 at 9:19
2
Solved
I am adding authentication to my docker private registry in windows 10. I have initially not implemented basic authentication but later, I implemented it using a htpasswd file which is in my auth f...
Beady asked 26/3, 2021 at 8:2
11
Solved
Similar to the question "What´s the sha256 code of a docker image?", I would like to find the digest of a Docker image. I can see the digest when I download an image:
$ docker pull waisbrot/wait:l...
Mcloughlin asked 7/9, 2016 at 16:48
17
Solved
I run a private docker registry, and I want to delete all images but the latest from a repository. I don't want to delete the entire repository, just some of the images inside it. The API docs don'...
Ain asked 21/8, 2014 at 22:9
3
I built a Docker image that I pushed to Docker Hub under my account and removed locally after. But when I try to pull it, it throws the following error:
Error response from daemon: pull access den...
Roselinerosella asked 16/2, 2018 at 10:36
2
Solved
I got a pipeline in Azure Devops which has a task that pushes a Docker image to an Azure Container Registry. I want to know if there's a way to prevent this task to overwrite any existing Docker ta...
Obscenity asked 23/6, 2020 at 16:17
22
Solved
I'm using docker registry v1 and I'm interested in migrating to the newer version, v2. But I need some way to get a list of images present on registry; for example with registry v1 I can execute a ...
Giustino asked 6/7, 2015 at 16:47
7
Solved
I have an application which runs in a Docker container. It requires some private modules from the company's private NPM registry (Sinopia), and accessing these requires user authentication. The Doc...
Anecdote asked 1/6, 2015 at 12:27
3
Solved
I use port-forwarding like this:
ssh -vND 1080 user@server_ip
Question:
How can I pull docker images with socks5?
pulling docker images with the docker pull command already has an answer here.
Bu...
Centner asked 9/12, 2019 at 10:5
3
Solved
In docker, how can one display the current registry info you are currently logged in? I installed docker, if I now do docker push, where does it send my images?
I spend over 30min searching this i...
Malfeasance asked 27/9, 2016 at 14:25
3
Solved
Please help me understand the difference between 'image' and 'build' within docker compose
Appoint asked 16/12, 2015 at 15:35
26
I am new to dockers. When I am running the docker pull sonarqube I am getting the following error.
Error response from daemon: Get https://registry-1.docker.io/v2/: dial TCP: lookup registry-1.doc...
Leavis asked 30/11, 2017 at 18:44
5
An external organization that I work with has given me access to a private (auth token protected) docker registry, and eventually I would like to be able to query this registry, using docker's HTTP...
Cincinnati asked 17/5, 2019 at 20:23
11
Solved
I'd like to pull the images of CentOS, Tomcat, ... using their sha256 code, like in
docker pull myimage@sha256:0ecb2ad60
But I can't find the sha256-code to use anywhere.
I checked the DockerHub re...
Sericeous asked 17/8, 2015 at 8:57
6
Error response from daemon: Get https://registry.xxx.com:5000/v1/users/: dial tcp: lookup registry.xxx.com on 192.168.65.1:53: read udp 192.168.65.2:42307->192.168.65.1:53: i/o timeout
I have s...
Dread asked 3/5, 2017 at 5:51
4
Solved
I have stacked in this phase:
Have local docker insecure registry and some images in it, e.g. 192.168.1.161:5000/kafka:latest
Have kubernetes cloud cluster, for which I can access only via ~/.kub...
Chatelaine asked 17/8, 2018 at 10:12
2
Solved
I have a custom docker registry running in a container bound to localhost like this 127.0.0.1:5010->5000/tcp. When I push an image to it locally it works. When I try to push an image to it remot...
Stomy asked 24/7, 2018 at 22:2
3
I am trying to take advantage of the caching/pulling system of BUILDKIT for Docker for my CI/CD process. But it does not work as expected.
I created a dummy local example (but the same happens also...
Dichroite asked 5/6, 2020 at 9:37
8
Solved
I cannot find a way of moving docker running containers from one host to another.
Is there any way I can push my containers to repositories like we do for images ?
Currently, I am not using data v...
Gdynia asked 26/2, 2015 at 3:43
4
I have a docker swarm in a virtual machine with 2 core 4GB ram Centos.
In the swarm when I deploy docker private registry (registry 2.6.4) it shows service status as pending forever.
I used
docke...
Magnetometer asked 24/5, 2017 at 2:56
© 2022 - 2024 — McMap. All rights reserved.