Failed to Install QuantRocket using Docker Compose File

After installing docker, I am following instruction on this page for installation on Mac: Installation Tutorial for Mac

When I execute this like: $ docker compose -p quantrocket up -d

Installation stops with error: "no matching manifest for linux/arm64/v8 in the manifest list entries"

Any clue how I can get this sorted please.

Sorry for the inconvenience. The IB Gateway container is an amd64 container as noted in the installation docs, and it looks like we now need to specify that explicitly in the Compose file. In your docker-compose.yml file, can you please find the ibg1 section:

  ibg1:
    image: 'quantrocket/ibg:2.9.0'
    environment:
      INI_SETTINGS: '--ExistingSessionDetectedAction=primary'
    volumes:
      - 'settings:/etc/opt/quantrocket'
    restart: always

And add a line that says platform: linux/x86_64, like this:

  ibg1:
    image: 'quantrocket/ibg:2.9.0'
    environment:
      INI_SETTINGS: '--ExistingSessionDetectedAction=primary'
    volumes:
      - 'settings:/etc/opt/quantrocket'
    restart: always
    platform: linux/x86_64

Then run docker compose -p quantrocket up -d again.

We will get the Compose file updated on the website.

I see you have updated the file on the website itself - I just downloaded the updated file and tried again.

All sorted - thank you.