1,734 questions
5
votes
1
answer
3k
views
dockerhub.io officially removed openjdk:8-jre from thier repository and what is he best alternative for it [duplicate]
While building the image for one of our application, I observed that I am unable to pull openjdk:8-jre from official docker.io
error: [ERROR]: [#3 ERROR: docker.io/library/openjdk:8-jre: not found]
I ...
1
vote
1
answer
254
views
How to deploy a local image on K3D without pushing to a registry and upgrade Helm deployments locally?
I have two questions regarding deploying a local Kubernetes cluster using K3D and Helm.
I have successfully built a local registry and cluster on K3D using the commands k3d registry create registry....
0
votes
1
answer
74
views
How Can I Integrate Untagged Image Deletion into My DockerHub Cleanup Workflow?
I have a DockerHub repository where my CI/CD workflow pushes a new image version every time it runs. To manage storage, I created a scheduled cleanup workflow that deletes older tags while retaining ...
1
vote
0
answers
181
views
The manifest digest is missing after a push to a gitlab container registry
I am trying to build a docker and send it to a container registry.
When i check to container registry the manifest digest is missing.
I use those commands:
docker-compose build X.web X.webapi
docker ...
0
votes
0
answers
145
views
VSCode devcontainer docker login Error: Cannot perform an interactive login from a non TTY device
I'm running some devcontainers in VSCode. Some are able to login to my docker registry and some aren't and I cannot work out what the difference is.
On the command line in a VSCode terminal I enter
...
0
votes
0
answers
27
views
Avoid out-of-cluster traffic for microk8s default registry
I just setup a microk8s instance with it's default container registry module enabled. I'm able to operate it easily, but it feels too easy now that I just found out that in default settings I can call ...
0
votes
1
answer
188
views
Is it possible to force push a docker image to a registry using docker_image Ansible module?
From what I understand, the docker_image Ansible module pushes an image to a registry only if the image is not already present inside the registry with the same tag. In my context, I'm trying to do a ...
0
votes
0
answers
130
views
Docker push to private registry fails even after a successful docker login : access forbidden
I have the following alpine image :
$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
alpine ...
0
votes
1
answer
340
views
Use custom authentication server for harbor registry
I am new to kubernetes and trying to deploy harbor on minikube using their official helm chart. I would like to use my custom docker authentication server when the docker client tries to authenticate ...
0
votes
1
answer
284
views
Is it possible to download content of a remote repository and upload it to a local repo?
I have a remote Docker repository that I can use to pull images like this:
docker image pull docker.mydomain.tld/alpine:latest
I attempted to download the contents of this remote repository using the ...
0
votes
1
answer
90
views
Way to use same API to ask private and public docker registries about tags and digests
I'm trying to do some script that fetches info about docker image tags available and digests for specific tags. But I must have been missing something obvious because I cannot find same way to ask ...
0
votes
1
answer
50
views
Docker extension adds "Build Image in Azure" in right-click menu when I have no Azure settings or extensions
When I right click a Dockerfile, the Docker extension is giving me two options for Build Image:
Build Image in Azure...
Build Image...
Right-Click Build Image Options
I have gone all through the ...
0
votes
2
answers
628
views
docker pull tries to talk http to registry that only understands https
I have an ordinary ubuntu image with no dockerd installed, only the docker command line client and curl such that I can query a docker registry. I have set up tls security. I use a third container for ...
-2
votes
2
answers
621
views
How to get details about a docker image with latest tag? (Base os, Version)
I am collecting some data for my project.
Is it possible to know what is the latest tagged images' version. Without having the image through the api. I want to keep a set of images data, and run ...
0
votes
1
answer
529
views
Docker public registry API V2 authentication
I’m trying to use docker registry APIs
I want to collect some data from the docker public registry (registry-1.docker.io hope this is correct)
But I couldn’t find the way to authenticate these APIs. ...
0
votes
0
answers
1k
views
How to install and give permission for docker in shell script
I try install docker like this on EC2 amazon linux and I found this error
# Install Docker
sudo yum install -y docker
sudo systemctl enable docker
sudo systemctl start docker
sudo usermod -aG docker ...
0
votes
1
answer
114
views
Docker registry scope missing in bearer token
I would like to programmatically inspect some images on docker hub. I found some guidance at https://distribution.github.io/distribution/spec/auth/token/
I request a token like below. Looks a bit like ...
-1
votes
1
answer
51
views
nginx in docker 502 [closed]
I have a Docker Registry in a container on my server.
My NginX is also in a container and another location(config) for static files works. So i can confirm that ssl is propperly configured. Curl on ...
2
votes
1
answer
718
views
docker image for amd64 is 6 times bigger than arm64
I'm building a Docker image for my Python Flask application on my Mac, based on the python:3.11-slim image. I've noticed a significant size discrepancy between the linux/amd64 and linux/arm64 targeted ...
0
votes
0
answers
56
views
In Jenkins, "RUN npm install" command in dockerfile run forever
This is my dockerfile. When i run this in local or VPS, it run completely fine.
FROM node:21.1.0
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
RUN npm run build
RUN rm -fr ...
1
vote
0
answers
53
views
Configuring container registry in dockerized gitlab 17 omnibus with an external nginx
As title said, I'm facing some difficoulties configuring the container registry in omnibus gitlab 17 using an external nginx.
This is the part of my compose.yml relative to gitlab config:
environment:
...
0
votes
1
answer
386
views
Removing images from Google Artifacts Registry
As a part of the deploy stage in Github Actions, I build and push my images to GCP's Artifacts Registry:
- name: Authenticate to Google Cloud
id: auth
uses: google-github-actions/auth@v1
with:
...
1
vote
1
answer
173
views
Failed to deploy "web app" with "docker compose". No logs, no explanation
I was able to succesfully start a web app according this tutorial Create a docker compose app (first part, no database).
I then tried to do the same with my toy application. This is a java application ...
0
votes
1
answer
500
views
Docker registry and mTLS client certs
Try to use mTLS client certs with docker registry. I deployed standard registry from docker docs with port 5000. And external nginx with mTLS on port 443. Nginx check client cert and proxy traffic to ...
0
votes
0
answers
155
views
Nexus Repository: Access through Group Repository, Permissions on Hosted Repository
I'm using Sonatype Nexus Repo 3.70 and a little bit confused about Permissions in group vs. hosted repositories.
Is it even possible to set permissions only to the hosted repos but access artifacts ...
2
votes
1
answer
77
views
Docker Push to Private Repo instantly returns "Connection Refused"
Using the docker API spec V2 I am trying to implement a simple Docker Registry over HTTP. Whenever I run docker push 127.0.0.1:5000/debian I instantly receive the following error.
Using default tag: ...
2
votes
2
answers
2k
views
Is it possible to build multi-architecture docker images via pipeline
I am trying to create one image that supports amd64 and arm64 in my DevOps pipeline but get this error:
ERROR: Multi-platform build is not supported for the docker driver.
Switch to a different driver,...
1
vote
0
answers
205
views
gRPC and Consul conflict issue with latest updated versions
When i'm tring to create and Adopting Service Discovery with Consul, for my golang microservice projects, consul and grpc conflicts with each other. When it removed grpc issue solved easyliy, but i ...
0
votes
0
answers
148
views
Only Access ACME
I want to login via docker from testserver to own gitlab-server for pulling docker image from gitlab-server in testserver. The connection between testserver and gitlab-server is vpn, so I don’t need ...
3
votes
1
answer
2k
views
How can I run Prefect flows using a Docker Worker pool and a local custom Docker image?
I'm new to Prefect and have a limited experience with Docker and I'm trying to deploy some existing Prefect flows so that they run inside a Docker container running an image I built myself, but ...
0
votes
0
answers
83
views
Docker pull image before building to enable better caching
I have a docker multi stage build which takes ~1.5hours to run.
I am building the image in a GitLab CI pipeline and pushing it to a container repository. The problem is because of the way my CI ...
-1
votes
1
answer
414
views
DockerHub rate limiting causing failed deployments on AKS and Azure container instance: docker registry 'index.docker.io'
This is a heads up to anyone deploying applications on Azure Container Instance or AKS that use images hosted on DockerHub.
Container instances may (in my experience, will) fail to deploy giving a ...
2
votes
1
answer
536
views
Getting 405 Method Not Allowed on heroku container:push
I've been trying many different Dockerfile configurations: single stage, multi-stage, using ENTRYPOINT, using CMD, running as root, running as a user, etc. But I run this:
heroku login
heroku ...
0
votes
1
answer
103
views
Dockerhub Pimcore image [duplicate]
I would like to use/extend the pimcore dockerhub image (as I need to customize certain things).
The image layers are here:
https://registry.hub.docker.com/layers/pimcore/pimcore/php8.1-debug-latest/...
0
votes
1
answer
343
views
docker private registry with nginx reverse proxy freeze when pushing
I setup my private registry using docker registry official image,
when try to push my own build image to my docker registry subdomain (cloudflare) it freeze at some layer
but the behavior is odds, ...
1
vote
1
answer
814
views
docker wsl build arm and x86 in the same time
I can build docker image for DockerHUB on WSL with Intel x64 using command:
docker build --tag sosnus15/pinger
and I can build on the same machine for arm based computers using command:
docker build -...
0
votes
2
answers
3k
views
Error response from daemon: Get "https://registry-1.docker.io/v2/": proxyconnect tcp: dial tcp: lookup proxy.example.com on 8.8.8.8:53: no such host
The error I got:
pegasus@pegasus:~/Downloads/Docker_deb$ sudo docker run hello-world
Unable to find image 'hello-world:latest' locally
docker: Error response from daemon: Get "https://registry-1....
0
votes
0
answers
508
views
Docker image push failed with EOF / Broken Pipe / Closed Connection error
I've tried to push the docker images to the remote repository. But every operation gets failed.
Either I get EOF exception like below
My-MacBook-Pro-2 producer % docker push <awsAccountId>.dkr....
1
vote
0
answers
229
views
Kaniko with Tekton Pipeline: Nexus Registry Push Error "404 Not Found"
I work at a corporate company where our network is intranet-based. We are using Nexus as our Docker registry and I am writing a pipeline in Tekton. In the pipeline, I am using Kaniko and have created ...
0
votes
0
answers
654
views
Not able to authenticate into Nexus docker repository
I deployed Nexus using a docker compose file, and created a docker hosted repository. While trying to authenticate into the repository using docker login ip:port, I got the eror message below. My ...
0
votes
1
answer
201
views
Allow Kubernetes to work with local docker registry
I'm new to kubernetes, and after successfully creating my first cluster with a single node (On debian 12), I am trying to deploy my first application, a simple hello world in python.
I use Kudeadm.
I ...
0
votes
1
answer
184
views
Jenkins pipeline can't push the image
I faced an issue with my Jenkins pipeline. This pipeline have worked for a long time. After that it started to fail with the auth to docker registry error.
unauthorized: User is unauthorized to upload ...
0
votes
1
answer
234
views
Is it possible to use images from Azure Compute Gallery in Azure Container Registry and vice versa? [closed]
I want to know the difference between Azure Compute Gallery and Azure Container Registry.
Both of them works as a registry to store images.
Azure Container Registry is more similar to docker registry –...
-1
votes
1
answer
488
views
docker login "connection refused" but only when the engine is running
I have a private registry in Kubernetes which I have connected to using
kubectl port-forward docker-registry-6bc94649d-529hq 443:5000
I can successfully log in and interact with it via curl requests ...
2
votes
4
answers
5k
views
Getting "No AWS accounts are available to you" when using aws configure sso
I set up a user in AWS IAM Identity Center. When I run aws configure sso, I enter the session name, start url, region, and registration scope (it defaulted to sso:account:access so I just use that) ...
0
votes
1
answer
93
views
Radius/Bicep - How to pull from private Docker registry with auth in generic Kubernetes?
I have a Kubernetes deployment yaml, which successfully pulls an image from a private Docker registry with authentication.
I'd like to do the same using Radius, but it's not clear how to do this using ...
-3
votes
1
answer
96
views
Docker, Unable to install GIT in Container
I Created a container and tried to install GIT in the container through Dockerfile.
Appreciate your comments.
Tried to install GIT with Dockerfile, Error
=> [internal] load .dockerignore ...
-2
votes
1
answer
106
views
Docker push failing to Dockerhub - tag does not exist
My bitbucket pipelines are failing with tag does not exist referring to dockerhub image push
this is the bitbucket-pipelines.yaml config
image: node:8
pipelines:
default:
- step:
name: ...
0
votes
0
answers
82
views
I need help to use and install docker on Linux kUbuntu [duplicate]
I need help installing docker on my KUbuntu.
I thought I had installed everything correctly, however when I get to the moment of creating the image, the following error occurs:
Command:
docker build -...
0
votes
1
answer
953
views
How to delete repositories and artifacts from Harbor when files don't exist anymore
We have a unique setup where we use Harbor as a mirror. So we setup a registry and replication, so we could pull from another repository.
But since we are just pulling, we don't need to backup the ...