Skip to content

Commit c23a870

Browse files
author
Matthias Frener
committed
2 parents da81ebe + edb2fab commit c23a870

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ RUN sha256sum --check ./checksums/ibgateway-${IB_GATEWAY_VERSION}-standalone-lin
3131
RUN chmod a+x ./ibgateway-${IB_GATEWAY_VERSION}-standalone-linux-x64.sh
3232
RUN ./ibgateway-${IB_GATEWAY_VERSION}-standalone-linux-x64.sh -q -dir /root/Jts/ibgateway/${IB_GATEWAY_VERSION}
3333
COPY ./config/ibgateway/jts.ini /root/Jts/jts.ini
34+
COPY ./config/ibgateway/ibgateway.vmoptions /root/Jts/ibgateway/${IB_GATEWAY_VERSION}/
3435

3536
# Install IBC
3637
RUN curl -sSL https://github.com/IbcAlpha/IBC/releases/download/${IBC_VERSION}/IBCLinux-${IBC_VERSION}.zip --output IBCLinux-${IBC_VERSION}.zip

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ version: "3.4"
2929
3030
services:
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 |
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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

0 commit comments

Comments
 (0)