Questions tagged [docker-push]

41 questions
0
votes
0 answers

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 large image): name: Build Image and Push to ACR on: …
Aron T
  • 108
  • 6
0
votes
0 answers

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 and got: CONTAINER ID IMAGE …
0
votes
2 answers

Docker push in Kubernetes container registry failing

The docker build was clearly successful as the docker image exists, but docker push keeps failing: Why? And how do I fix it? I also tried replacing the project name with the project ID from the dashboard as shown in the screenshot of the terminal,…
0
votes
1 answer

How to push image to hub.docker.com instead of docker.io

I want to push my image to my repo located in hub.docker.com . When I run docker push /: It tries to push to docker.io but I wanted to push it to hub.docker.com as my repo has been created there. Could anyone please tell…
NewGuy
  • 49
  • 1
  • 9
0
votes
1 answer

Build all containers before pushing to registry using Buildkit

I've the following Dockerfile: FROM php:7.4 as base RUN apt-get install -y libzip-dev && \ docker-php-ext-install zip # install some other things... FROM base as intermediate COPY upgrade.sh /usr/local/bin FROM base as final COPY…
0
votes
1 answer

Not able to buid with latest tag in dockerfile

I m trying to build an image with two tags - latest and version number. Current implementation- docker build \ -t ${IMAGE_NAME}:latest \ -t ${IMAGE_NAME}:${VERSION} \ docker push "$IMAGE_NAME:latest" docker push…
Isha Nema
  • 289
  • 5
  • 16
0
votes
2 answers

How to debug what is causing layers built from the same codebase on different workstations to be different?

In our development workflow we build images, push them to a registry, and then deploy services from them in a staging cluster. The workflow is severely bogged down by huge sizes of image pushes, because layers built from the exact same codebase on…
Szczepan Hołyszewski
  • 2,707
  • 2
  • 25
  • 39
0
votes
1 answer

Docker issue "requested access to the resource is denied"

PS C:\Users\user\Desktop> docker login Authenticating with existing credentials... Login Succeeded PS C:\Users\user\Desktop> docker push tree The push refers to repository [docker.io/library/tree] 701ae319ce59: Preparing …
Md Khalake
  • 13
  • 3
0
votes
1 answer

Does AWS ECR provide automated docker image build option?

dockerhub provides automated build option on every new git push. With automated build option, we know, which image corresponds to which docker filethis is a important. On git push of Dockerfile in GitHub repo or Bitbucket, build starts…
overexchange
  • 15,768
  • 30
  • 152
  • 347
0
votes
1 answer

Strategy for building docker and pushing it in different CI build steps without tar

I want to build some docker images in a certain step of my Google Cloud Build, then push them in another step. I'm thinking the CI used doesn't really matter here. This is because some of the push commands are dependent on some other conditions and…
-2
votes
1 answer

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!
1 2
3