Having some trouble getting started on my apple si...
# ask-community-for-troubleshooting
j
Having some trouble getting started on my apple silicon mac - using
docker compose
I can get the app up and running (though it usually hangs the first time and I have to cancel the docker compose and restart it). The problem I’m running into is either a 500 error or a timeout when trying to configure a source. The endpoint in question is
<http://localhost:8000/api/v1/source_definition_specifications/get>
. I’ve tried
docker compose down -v
to start from scratch, but the same issue reoccurs. (also side-note, the support link shown in the screenshot 404s)
1
@Liren Tu did you try launch Airbyte using the Macbook M1 or only building the core?
l
We have a PR to experiment on M1. However, there are various issues, and we are far from getting to the bottom of it yet. https://github.com/airbytehq/airbyte/pull/3614 To compile the connectors, you can specify a platform for the base in
Dockerfile
. For example, to compile the db connector, I tried this in
airbyte-db/Dockerfile
and it worked:
Copy code
FROM --platform=linux/amd64/v8 postgres:13-alpine
it usually hangs the first time and I have to cancel the docker compose and restart it
Yes, I experience this too.
j
ah - thanks for the additional context. Sounds like I should try another machine for the time being