Hey guys, Currently, I'm using `meltano/meltano:v1...
# docker
i
Hey guys, Currently, I'm using
meltano/meltano:v1.75.0-python3.7
docker image to set up a local environment for my project. I'm using MacBook on M1 chip and docker runs the
amd64
image version under emulation. In general, it works fine, but it would be great to run the Meltano image in native mode. Do you have plans to create and publish Docker image for
arm64
architecture? Are there some issues with it?
e
Hi @ivan_kovbas. The Meltano image in dockerhub is based on the python image, and there does seem to be alternative bases for other architectures, like arm64v8/python. Would you be willing to file an issue for this?
i
Hi @edgar_ramirez_mondragon and thank you for the answer. As I can see we can still use the regular python image as it is Multi-Arch:
Copy code
ivankovbas@Ivans-MacBook-Pro-2 ~ % docker manifest inspect python:3.6 | grep architecture                       
"architecture": "amd64",
"architecture": "arm",
"architecture": "arm",
"architecture": "arm64",
"architecture": "386",
"architecture": "mips64le",
"architecture": "ppc64le",
"architecture": "s390x",
What do you think about changing the way how the Meltano image is built and build it Multi-Arch as well?
e
Thanks for sharing that link @ivan_kovbas! I think it's feasible. I created an issue for it here https://gitlab.com/meltano/meltano/-/issues/2919. If you have any ideas or suggestions, feel free to comment them in the issue or this thread simple smile
i
@edgar_ramirez_mondragon nice, thank you ☺️