47 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
166
views
Unable to limit streamed request size using Envoy lua filter
I have implemented an envoy filter that aims to limit layer size for upload to a registry (CNCF), I cannot use the pre-exisiting max_request_body_bytes filter because the size limit is huge and I do ...
0
votes
0
answers
450
views
Jenkins pipeline giving "unexpected EOF" error while doing docker push
I have a jenkins job where I am pushing the docker image in ECR. Please refer to the below code:
pipeline {
agent {
node {
label "${jenkins_node}"
}
}
...
0
votes
1
answer
596
views
Clone Docker image with a different tag/sha
I want to push a Docker image to AWS multiple times with incremented version numbers. I'm basically wanting to clone the same image with a different SHA each time. I'm running into an issue where my ...
0
votes
1
answer
197
views
Pull and push docker image from one AzureCR to another AzureCR using bash script
I am using bash script to pull docker images from one Azure Container registry (ACR) to push it to another ACR but getting below error, only the last image from the text file is getting pull/push. I'd ...
1
vote
0
answers
239
views
Resume Docker push if interrupted?
When pushing a large layer to Docker Hub, is there a setting to make to enable an interrupted image upload to be resumed on the next docker push?
docker push me/foo:latest
4e5786849edb: Pushing [=====...
3
votes
0
answers
495
views
How to split a 60GB docker layer to achieve better performance?
I'm installing AMD/Xilinx Vivado in an Docker image. Even an almost minimal installation is 60 GB in size resulting in a 29GB compressed image. A full installation is something around 150 GB...
The ...
2
votes
2
answers
1k
views
Docker push failing with /var/lib/docker/overlay2/<id>/merged/run/sisidsdaemon.pid: no such file or directory
When i try to push the image to artifactory, seeing below error. The docker build was successfull.
The push refers to repository [jfrogartifactory.com/jenkins/k8stools]
bd862c2c6862: Pushed
...
1
vote
1
answer
254
views
Nginx 502 error after Watchtower pulls new nodejs image
This is my common docker-dcompose.yml:
version: '3.8'
services:
cron:
container_name: cron
restart: always
build:
context: ./containers/cron
depends_on:
- server
...
1
vote
1
answer
1k
views
Failed pushing to Github Container Registry
I am using GitHub workflows to push a small package to a private GH container registry. Yesterday most of my workflows went through, but suddenly they stop working. I am not aware of any recent ...
0
votes
1
answer
2k
views
Error while pushing Docker image on Azure Container Registry
I am getting below error when I run docker push command on my Azure Linux server,
The push refers to repository [prio.azurecr.io/prio-adi-piplines]
ea8e4df76021: Preparing
48b104cbbb7b: Preparing
...
3
votes
1
answer
496
views
Unable to push docker image to AWS ECR Private Repository - Retrying Error in 5,4,3,2,1 seconds and fails
I have access to AWS root account and I am unable to push the docker image to AWS ECR. Following are the steps that I take
Create a repository in AWS ECR called zestbot
Execute sudo aws ecr get-login-...
0
votes
0
answers
2k
views
Github Action Docker Build and Push not working
I am trying to build a simple Dockerfile using build and push but no matter what I do it gives me permission errors. Here is the Github Action Yaml (we are running on a large runner since it is a ...
1
vote
2
answers
11k
views
Phase context status code: COMMAND_EXECUTION_ERROR Message: Error while executing command: docker push Reason: exit status 1
I'm trying to build a pipeline that build and push docker images to ECR using buildspec for AWS CodeBuild. My project is multi containers microservices with docker-compose yaml file. I have enable ...
0
votes
0
answers
34
views
Properly push Docker image with other images
I made a PHP app and want to make a Docker image out of it.
For my app to work, I need PHP-apache, MySQL, and PhpMyAdmin.
When I run docker-compose up, everything works fine.
So, I did docker ps -a ...
-1
votes
1
answer
9k
views
Docker push: Force Push All Layers?
Does docker push possess a --force flag which forces all layers to be pushed to the repository, regardless of whether the repository believes those layers are unchanged?
Thank you!