Hello everyone! I'm trying to pull growthbook dock...
# announcements
j
Hello everyone! I'm trying to pull growthbook docker image and getting the error: no matching manifest for linux/arm64/v8 in the manifest list entries Is there any image alternative for this one? I'm using MacOS arm64
Finally I was able to pull and run it with
--platform linux/amd64
s
Hi, @jolly-barista-21837. I'm trying to self-host using MacOS arm64, but am have issues. Could you please share more details on how you were able to get it to run? Thank you.
j
Hi! If you're using docker-compose to run it, just add --platform linux/amd64 to your docker-compose file:
Copy code
services:
  mongo:
    ports:
      - "27017:27017"
    image: "mongo:latest"
    environment:
      - MONGO_INITDB_ROOT_USERNAME=root
      - MONGO_INITDB_ROOT_PASSWORD=password
  growthbook:
    platform: linux/amd64
    ...
s
Thank you