Skip to content

Latest commit

 

History

History
 
 

release

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Build Docker Image From The Most Recent pip-installable Deephaven-IB Release

This directory contains the ingredients to launch a prebuilt deephaven-ib image.

In general, you will want to use the officially released images at https://github.com/deephaven-examples/deephaven-ib/pkgs/container/deephaven-ib.

Build Image

./build.sh

Run image in interactive mode

DH_IB_VERSION=<version> docker compose up
# Set jvm_args to the desired JVM memory for Deephaven
docker run -it -v data:/data -v `pwd`/.deephaven:/storage -p 10000:10000 deephaven-examples/deephaven-ib:<version> python3 -i -c "from deephaven_server import Server; _server = Server(port=10000, jvm_args=['-Xmx4g']); _server.start()"