https://www.growthbook.io/ logo
j

jolly-barista-21837

04/12/2023, 10:29 AM
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

some-umbrella-45927

04/19/2023, 4:59 PM
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

jolly-barista-21837

04/19/2023, 5:42 PM
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

some-umbrella-45927

04/19/2023, 8:25 PM
Thank you