Questions tagged [docker-push]

41 questions
23
votes
5 answers

Permission "artifactregistry.repositories.downloadArtifacts" denied on resource

While the artifact repository was successfully creating, running a docker push to push the image to the google artifact registry fails with a permissions error even after granting all artifact permissions to the accounting I am using on gcloud…
8
votes
5 answers

Publish docker image to jfrog artifactory from github actions CICD pipeline

I am implementing CICD pipeline with github actions. I want to publish the docker image to jfrog artifactory. Does anybody has any idea how to implement that?
urmila
  • 81
  • 1
  • 3
6
votes
2 answers

How to tag multi architecture docker image and push the newly tagged image?

I'm trying to achieve re tagging of docker images via docker command. Basically I need to do the below steps to achieve my goal: 1)Pull an existing multi architecture image from private registry. 2)Tag it with new name (e.g: tag imagename-test to…
bluebud
  • 183
  • 1
  • 1
  • 10
6
votes
1 answer

Github action: Build and push docker image fails. server message: insufficient_scope: authorization failed

I'm using the GitHub action "Build and push Docker images" as it's from Docker and a top rated verified action. The relevant snippet of my YAML file is as follows - name: Set up QEMU uses: docker/setup-qemu-action@v1 - name: Set up Docker…
Viswanath
  • 1,413
  • 13
  • 25
5
votes
3 answers

Github action error during push docker image

I am trying to run within my github action a docker push since like to use the same image as part of different repos. The code I am using is the following: docker build . --pull --rm --file "$GITHUB_WORKSPACE/${{ matrix.path }}/Dockerfile" --tag…
Tobias Bruckert
  • 348
  • 2
  • 12
4
votes
1 answer

Docker push Error saving credentials: error storing credentials - err: exit status 1, out: `not implemented`

I have all AWS CLI and docker setup and running for a while. I changed the command codes to all run from a bash file. However, when running the docker push I get this error Error saving credentials: error storing credentials - err: exit status 1,…
Neda Ebrahimi
  • 185
  • 2
  • 11
4
votes
2 answers

docker push with AWS CodeBuild fails with exit status 1

I created my CodeBuild project triggered by CodePipeline and the 'docker push' step always fails with the 'Reason: exit status 1' error message Here are my build logs (replaced my org id by ): [Container] 2021/06/12 14:39:47 Entering…
julinho
  • 301
  • 3
  • 11
4
votes
1 answer

Update image of existing azure registry does not work

I am new to docker and I am trying to update an existing web service on an azure website. After building the image, this is what I did: docker login .azurecr.io # Successfully logged in docker tag
geoph9
  • 357
  • 3
  • 18
3
votes
0 answers

Working with Jenkins and GHCR; can a github app authenticate to push a docker image?

We are trying to setup a workflow using Jenkins to build docker images using code that is onto github and push it back onto it. We have setup a github app for jenkins to use to access the code repository/branches/PR, but it seems although i have…
3
votes
3 answers

Github Actions: Push docker image build by gradle task

For building images of my current project, I use the gradle task bootBuildImage. This task creates a OCI image using Cloud Native Buildpacks. - name: Build image with Gradle run: ./gradlew bootBuildImage With the next step I'm trying to push this…
Sebastian Ullrich
  • 1,007
  • 11
  • 21
3
votes
1 answer

Is docker push/pull atomic?

The question is simple as it seems. What happens if the push is interrupted (^C ?) during the process but the remote repository already has the image (same name/tag)? Will the successfully uploaded layers overwrite the existing images, may be…
freedev
  • 25,946
  • 8
  • 108
  • 125
2
votes
0 answers

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-password --region eu-west-2 | sudo docker login…
Saad Ahmed
  • 74
  • 1
  • 6
2
votes
1 answer

Unable to push docker image to github package using github actions

Hi I am trying to push docker images to github packages using workflow. Below is my workflow. - name: Log in to the Container registry uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 with: registry: ${{…
Niranjan godbole
  • 721
  • 3
  • 13
  • 28
2
votes
1 answer

How to push multiple docker images with docker-compose to docker hub?

I have several images and services in my docker-compose file, For creating a PHP, Apache, MySql, and PHPMyAdmin environment to run my website. Can anyone help me with how can I push my all images or created an environment with my website code on…
2
votes
1 answer

Docker: Tag does not exist

I referred this Stackoverflow question prior to asking this but even though it looks similar that question does not contain the answer for my matter. I developed Springboot project and created docker image called kubernatesimage in my local machine.…
INDRAJITH EKANAYAKE
  • 3,894
  • 11
  • 41
  • 63
1
2 3