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.