QuantraServer v0.1.1
First working GHCR container release of QuantraServer.
Documentation: https://quantra.io/docs
This release provides a self-contained evaluation/runtime container that starts both the gRPC cluster and the JSON HTTP API.
Container image
docker pull ghcr.io/joseprupi/quantra-server:0.1.1Immutable image digest:
ghcr.io/joseprupi/quantra-server@sha256:<PASTE_DIGEST_HERE>
Run
docker run --rm \
-p 8080:8080 \
-p 50051:50051 \
ghcr.io/joseprupi/quantra-server:0.1.1Test
curl http://localhost:8080/health
curl http://localhost:8080/metaExpected health response:
{"status":"healthy"}Runtime
The container starts:
- gRPC / Envoy endpoint on port
50051 - JSON HTTP API on port
8080
It includes the required runtime binaries and FlatBuffers schemas.
Notes
For evaluation, demos, and simple testing, use this self-contained image. For production deployments, the preferred architecture is to deploy the gRPC service, JSON API, and proxy/load-balancing components separately.