Docker stack deploy doesn't pull images
I'm launching through Ansible (just SSH basically) a docker stack deploy, the issue is also true when launching directly from a manager:docker stack deploy --prune --with-registry-auth -c...
View Articlecreating private registry, id and password with -Bbn option
Any one knows what does Bbn stands for in the below commandI am aware that,If the bbn option is not provided its not possible to write in the htpasswd file,but what is the meaning of itdocker run...
View ArticleUpdate ECS task definition with new image from ECR
I have an ECS cluster/service/task definition using an image from my ECR repository.Let's say I update the image with a new version, will ECS pick the changes automatically?Do I need to modify the task...
View ArticleReferencing locally built Docker images in Terraform
Is it possible to use docker images in Terraform that are not hosted in a registry but in the local Docker storage?I'd like to have a resource like the following where no pull is performed on the image...
View Articleunable to login using docker registry on jenkins
I have a Jenkinsfile that I need to login to ECR. this is the relevant section script { docker.withRegistry('https://01234.dkr.ecr.ap-southeast-1.amazonaws.com/', 'awsId'){ def image =...
View ArticleAccess private DockerHub repo in Docker Swarm
I am trying to deploy a docker swarm using Digital Ocean's docker-machine driver. This is currently a single node that contains several public DockerHub images, and one private. I am having...
View ArticleJenkins Helm Chart - kubernetes-plugin pulling image from a private gcr
I am failing to pull images from a private gcr repo through helm jenkins on a private k8s repo. I am getting:rpc error: code = Unknown desc = Error response from daemon: unauthorized: You don't have...
View ArticleHow to setup Docker mirror proxy Repository in Nexus Repository ManagerOSS...
So, We are going to setup local proxy repository. Which directs to further docker hub and our another remote Docker Hosted repository hosted on different location.Which is requested through...
View ArticleGitlab CI/CD fails to build docker image
I have built a custom base image from alpine and use it as the base for ruby services that we develop.FROM ruby:2.4.2-alpine...I use Gitlab and Gitlab's docker registry along with it. Each project has...
View ArticleUntracable glassfish docker container image or clean installation?
For a customer I need to create a glassfish container, containing the glassfish 5.0 release.I have been looking for standard glassfish images on docker hub, and other places, but can't manage to find a...
View ArticleHow to pin public root key when downloading an image with docker pull (Docker...
How can I execute docker pull (with Docker Content Trust enabled) such that it fails if the image doesn't have a valid signature using the private key corresponding to (or subordinate to) the public...
View ArticleIs there a way to push tarred repository to dockerhub without loading on local
I have a tarred docker repository created by using docker save.I want to push this tar to a registry, say dockerhub. Is there a way we can do that without loading on local docker?
View ArticleIs it possible to make the minikube VM use the VPN configuration from the...
I am currently writing a script that deploys a number of applications to a local minikube cluster for development purposes. This script is working great on Linux, but then I tried it on Mac OSX.When...
View ArticleKubernetes Failing with Self Signed Docker Registry Certificate
We have a private Docker registry and we're attempting to get a our Kubernetes cluster to pull images from it, but it's failing with the following error: Type Reason Age From Message ---- ------ ----...
View ArticleWhile pulling windows docker image from private registry, Docker trying to...
I created a Windows based docker image (asp.net web project) and pushed it to my private image registry.when i pull the image from another windows server (offline and there is not a proxy), i'm getting...
View Articlegitlab project registry - docker push fails with invalid reference format...
I have create a personal access token for my project. in my gitlab-ci.yml I'm trying to create a docker image and then save it in my project's repository.I'm able to login - I see an explicit message...
View Articlegitlab container registry: how to test that it's set up and working?
I'm trying to push for the first time to a gitlab project container registry.I am not a gitlab administrator so I can't change global settings. But as far as my project is concerned I've made sure that...
View ArticleHow to configure registries.yaml to point to several Harbor proxy cache...
I have configured a Harbor (with SSL and FQDN: harbor.example.com) as a proxy cache for several docker registries (docker.io, quay.io and k8s.gcr.io). I can pull any images without any problem from any...
View ArticleExporting multi-arch Docker image from local registry to .tar file
I have a multi-arch build that is pushing to a local registry I have running:docker buildx build --platform linux/amd64,linux/arm64 --push -t localhost:5000/myimage:latestI need to export this...
View ArticleAzure Devops pipeline not listing artifact created by it
I am building and pushing Docker images to my Azure Container Registry from Azure DevOps using the azure-pipelines.yml file below.This works great except that there doesn't seem to be any relation...
View ArticleUnable to pull image from a private Docker registry with Let's Encrypt...
I have set up a private Docker registry on my Kubernetes cluster (k3s) running on a Raspberry Pi 4. I have secured the registry with a Let's Encrypt certificate, and I can confirm that the certificate...
View ArticleAWX Failed to pull image on a private registry
Context:I got a K8s cluster where I setup AWX using the official Helm install. On this cluster, there I also setup a Sonatype Nexus repository with a docker(hosted) private registry configured in order...
View ArticleWhat is the URL I provide to docker or podman to pull down a GitLab registry...
When I am at a repo's container registry, I can see this,However it's not clear ohw that URL works, the URL provided isgitlab-org/gitlab-runner/alpine-no-rootBut I can't runpodman pull...
View ArticleHow to efficiently copy multiple Docker images between two air gapped...
I need to efficiently copy Docker images between two air gapped repositories. The current method of saving images to disk and transferring them as tarballs is time-consuming, so I am looking for a...
View ArticleAre there Docker Hub comparable public Docker image repositories?
Historically, you can download official community software from a distributed mirror network.Even for Java Maven, there are two sites globally.But what is about Docker Hub? What if Docker, Inc. decides...
View ArticleDocker preserve images policy
Can I configure Docker in a such way that it will store only certain amount of tags for the given image e.g. docker imagesREPOSITORY TAG IMAGE ID CREATED SIZEecr.us-east-1.amazonaws.com/myapp...
View ArticleNexus OSS docker security
I am using Nexus OSS 3.34 as my private artifacts repository. I have configured Docker registry as private one and I thought it was private. The registry have its own TCP port and is served to internet...
View ArticleGetting error pulling image configuration: download failed after attempts=6:...
I am trying to pull image from Azure ACR from one of vm where docker is installed. This was working before without any issue. But now i am getting error while pulling the image from Azure ACR.Error...
View ArticleHow to push and deploy to Microk8s built-in registry
I am studying how to create a Proxmox-Microk8s workflow. I can deploy basic apps with my yaml, like Wekan or Wordpress. I cannot deploy a custom image. It's the most basic npm create vite@latest app...
View ArticleKubernets docker registry behind nginx-ingress
I try to setup docker-registry in Kubernetes cluster behind the nginx-ingress controller.The issue is, when I try to push the image into private registry, it tells me:Get https://registry.local/v2/:...
View Article