Open rafaelfliu opened 1 month ago
It does not work for me either
Because the docker image has been created for an ARM architecture only. It would work on a raspberry pi but most of us are on X86/AMD64.
any chance we can get a docker for X86?
Alternatively, you can use the Dockerfile and spec it to your specific needs.
@deeleeramone, not sure this should be classified as a bug unless the CI/CD tools are meant to deploy multi-arch docker images.
The manual steps to build would be (docs reference):
docker buildx build --platform linux/amd64 -f build/docker/platform.dockerfile -t openbb-platform:latest --no-cache .
Make sure to run this from the root of the OpenBB projectdocker run --rm -p 8000:8000 -v ~/.openbb_platform:/root/.openbb_platform openbb-platform:latest
http://localhost:8000/docs
this should return the openAPI documentationN.B. if you get the message that http://deb.debian.org
cannot resolve, then modify the build command by adding the following flag --network=host
, i.e.,
docker buildx build --platform linux/amd64 -f build/docker/platform.dockerfile -t openbb-platform:latest --network=host --no-cache .
Describe the bug Pulled the docker image successfully, but unable to run a container off the image. Encountered the following error message:
To Reproduce
docker pull ghcr.io/openbb-finance/openbb-platform:latest
docker run --rm -p 8000:8000 ghcr.io/openbb-finance/openbb-platform
Screenshots N.A.
Desktop (please complete the following information):
Additional context N.A.