Hi Team! :wave: I am a newbie to Meltano here and ...
# getting-started
a
Hi Team! 👋 I am a newbie to Meltano here and wanted to try to replicate what AJ Steers has shown in

this videoâ–¾

but using gitlab demo project. Basically my intent is to understand what should be the steps I need to follow to make gitlab-demo project run in my system.
Also, I am trying to run
docker run -v $(pwd):/project -w /project meltano/meltano <args>
and that's leading to following error on my M1 MacBook Pro
Copy code
WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested
2022-02-03T12:23:41.088010Z
a
I'll add a quick disclaimer - the context of that video was that we had a data engineering course with attendees on Mac and Windows, which is why we used Docker devcontainers as a common baseline. The other getting started docs on docs.meltano.com would not require Docker. Mac users will have an easier time than Windows folks, and Docker may not be necessary.
i
I have M1 Mac and there are caveats to properly build docker images. Here is a command that works for me - I need both x86 and arm64 (for M1)
Copy code
docker buildx build --platform linux/amd64,linux/arm64 .
you can google for multiplatform docker builds for more details