File tree Expand file tree Collapse file tree 3 files changed +33
-1
lines changed
Expand file tree Collapse file tree 3 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ RUN sha256sum --check ./checksums/ibgateway-${IB_GATEWAY_VERSION}-standalone-lin
3131RUN chmod a+x ./ibgateway-${IB_GATEWAY_VERSION}-standalone-linux-x64.sh
3232RUN ./ibgateway-${IB_GATEWAY_VERSION}-standalone-linux-x64.sh -q -dir /root/Jts/ibgateway/${IB_GATEWAY_VERSION}
3333COPY ./config/ibgateway/jts.ini /root/Jts/jts.ini
34+ COPY ./config/ibgateway/ibgateway.vmoptions /root/Jts/ibgateway/${IB_GATEWAY_VERSION}/
3435
3536# Install IBC
3637RUN curl -sSL https://github.com/IbcAlpha/IBC/releases/download/${IBC_VERSION}/IBCLinux-${IBC_VERSION}.zip --output IBCLinux-${IBC_VERSION}.zip
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ version: "3.4"
2929
3030services:
3131 ib-gateway:
32- image: waytrade/ib-gateway:1010
32+ image: waytrade/ib-gateway:1012.2c
3333 restart: always
3434 environment:
3535 TWS_USERID: ${TWS_USERID}
@@ -142,5 +142,7 @@ or similar).
142142
143143| Tag | IB Gateway Version | IB Gateway Release Channel | IBC Version |
144144| --- | ------------------ | -------------------------- | ------------ |
145+ | 1012.2c | 10.12.2c | latest | 3.12.0 |
146+ | 981.3g | 981.3g | stable | 3.12.0 |
145147| 1010 | 10.10 | latest | 3.10.0 |
146148| 981 | 981c | stable | 3.10.0 |
Original file line number Diff line number Diff line change 1+ #
2+ # This file contains VM parameters for IB Gateway 10.12.
3+ # Each parameter should be defined in a separate line and the
4+ # last line must be followed by a line feed. No leading or
5+ # trailing whitespaces are allowed in the same line, where a
6+ # parameter is defined.
7+ #
8+ # Lines starting with a '#' character are treated as comments
9+ # and ignored. Additionally, if a line contains a
10+ # '### keep on update' string, all parameters defined below will
11+ # be preserved on update.
12+ #
13+
14+ # maximum Java heap size
15+ -Xmx768m
16+
17+ # GC settings
18+ -XX:+UseG1GC
19+ -XX:MaxGCPauseMillis=200
20+ -XX:ParallelGCThreads=20
21+ -XX:ConcGCThreads=5
22+ -XX:InitiatingHeapOccupancyPercent=70
23+
24+ -Dinstaller.uuid=dc71edfa-a1bb-4c1e-a0d9-9bac192054cd
25+ -DvmOptionsPath=/root/Jts/ibgateway/1012.2c/ibgateway.vmoptions
26+ -Dsun.awt.nopixfmt=true
27+ -Dsun.java2d.noddraw=true
28+ -Dswing.boldMetal=false
29+ -Dsun.locale.formatasdefault=true
You can’t perform that action at this time.
0 commit comments