-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
problem with docker image dimitri/pgcopydb:v0.17
?
#866
Comments
I'm currently facing the same problem. I'm using the image as a runtime container for a GitHub Workflow. Do you know the issue? @dimitri |
There is only one docker image for v1.7 with OS/ARCH pair of In earlier releases, we had only |
Is there anything we should be doing about that issue then? |
Yes, in my opinion, the container registry at |
We do not have automated builds on dockerhub, and my attempts to build for linux/amd64 from my current laptop are failing, all I seem to be able to get is an image for linux/arm64. Help? |
Oh I see. So the issue would be resolved if we add automated image build and push to Docker Hub here https://github.com/dimitri/pgcopydb/blob/main/.github/workflows/docker-publish.yml ? As far as I see it's only configured to push to GitHub Container Registry, at the moment. |
As a workaround I was able to get an |
From a Medium article:
So, for example, in Dockerfile.debian I think changing the first line:
to:
might build the non-ARM version. You mentioned:
Can you elaborate? |
I'm pretty sure what is missing here is just the GitHub Workflow, which pushes the image to both GHCR and DockerHub. If you can not find anyone, I could also contribute this feature. |
I get "exec format error" when trying to run the latest docker image.
This works fine with previous versions (v0.16, v0.15, ...).
Docker is supposed to handle all that platform stuff automatically. By using
docker inspect
I see that the image getting pulled was built for 'arm64' even though I am running this command on Intel hardware. My docker is apparently so old I don't have thepull --platform
option ormanifest
options.So, moved on to an Intel MacBook with newer docker installed, I can see the following:
So I think something is wrong in the docker repo where it is always serving the
arm64
image.The text was updated successfully, but these errors were encountered: