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 ArticleHost a docker registry native
I want to host my own docker-registry server to be independent from docker-hub.I want to run it native on my server, but I can only find documentations, which are using running it inside a container.My...
View ArticleFailed to start Container after reboot
I am hosting an own registry.After rebooting the Server my registry container is unable to start.I used this command to start the registrydocker run -d -p 5000:5000 --name registry -v...
View ArticleIncrease Kubernetes Nginx Ingress limits for large images in Docker registry
When pushing images to a self hosted Docker registry installed using their official helm chart, this works for some images. But for one image, I'm not able to push two layers. Docker retry it several...
View ArticleCI pipelines, concurrency and build results possibly overwriting each-other
I'm currently using gitlab-ci to generate docker images for some repositories, however i dont feel as though this solution is as reliable as it should be.I can forsee a issue with multiple builds...
View ArticleHow to clean up old images in docker registry with jenkins
I have a jenkins multi branch project, that builds on every commit and pushes the image to our private...
View Articledocker hub repo [closed]
I have created a repo on my docker hub account. While trying to download it it shows errors. I have tried the following commands:docker id saurabhgore65docker pull <saurabhgore65>/subashdocker...
View ArticleJenkinsfile: Pull image from registry endpoint A, push built image to...
I have two endpoints for my registry (Nexus OSS):Endpoint 10500 to pull images from.And Endpoint 10501 to push images to.(I can go into detail what the idea is and why we think Nexus requires this if...
View ArticleWhat docker command could be issued to check whether a certain local docker...
The docker help was consulted:Usage: docker [OPTIONS] COMMANDA self-sufficient runtime for containersOptions: --config string Location of client config files (default "/home/ben/.docker") -c, --context...
View ArticleHow to enable tag immutability in quay.io?
Elastic Container Registry (ECR) for example supports Tag Immutability (TI). TI implies that docker tags cannot be overwritten if they exist in a docker-registry.The settings of the organization and...
View Articlestop pulling a docker image from the public docker-hub registry
Is there any way to stop pulling a docker image from the public docker-hub registry while building image locally. Note: We are maintaining a private registry that contains all the images. Only and only...
View ArticleIssue pushing to ECR using Jenkins
I'm trying to push an image to ECR via a Jenkins pipeline. Currently I have the ECR plugin installed, and a role assigned to my EC2 instance that allows ECR access.I am using correct credentials that...
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 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 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 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 Article