Hi Ed,

I encountered an issue while running the Docker test/build image on my Mac
M1. It indicates that the Docker image does not support Linux/arm64/v8.

```
$ sudo docker run -it -h cdw --rm
apache/incubator-cloudberry:cbdb-test-rocky9-latest

Unable to find image 'apache/incubator-cloudberry:cbdb-test-rocky9-latest'
locally
cbdb-test-rocky9-latest: Pulling from apache/incubator-cloudberry
docker: no matching manifest for linux/arm64/v8 in the manifest list
entries.
```

I searched and I can add `--platfrom linux/amd64` to support running on my
Macbook:
```
$ sudo docker run -it -h cdw --platform linux/amd64 --rm
apache/incubator-cloudberry:cbdb-test-rocky9-latest
```

It would be great to have support for arm64 by default! This change could
make it much easier for folks, especially those with limited Docker
experience like me, to use the Docker image. Thanks for considering it!

Best,
Dianjin Wang


On Fri, Nov 15, 2024 at 5:23 PM Ed Espino <esp...@apache.org> wrote:

> Hi Cloudberry Dev Team,
>
> I wanted to share a progress update on our CI implementation efforts.
>
> We have successfully implemented the creation of Apache Cloudberry
> (incubating) Docker containers for both building and testing on:
>
>    - Rocky Linux 8
>    - Rocky Linux 9
>
> These containers are now being automatically created via GitHub workflows.
> You can view:
>
>    - Workflow runs and artifacts:
>    https://github.com/apache/cloudberry-devops-release/actions
>    - DockerHub Published containers:
>    https://hub.docker.com/r/apache/incubator-cloudberry
>
> These containers will serve as the foundation for our subsequent CI
> implementation phases that we discussed in the previous emails.
>
> Best regards,
> -=e
> --
> Ed Espino
> Apache Cloudberry (incubating) & MADlib
>

Reply via email to