-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.yml
64 lines (52 loc) · 1.58 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
version: "3.4"
services:
redpanda:
command:
- redpanda
- start
- --smp
- '1'
- --reserve-memory
- 0M
- --overprovisioned
- --node-id
- '0'
- --kafka-addr
- PLAINTEXT://0.0.0.0:29092,OUTSIDE://0.0.0.0:9092
- --advertise-kafka-addr
- PLAINTEXT://redpanda:29092,OUTSIDE://localhost:9092
image: docker.vectorized.io/vectorized/redpanda:latest
ports:
- 9092:9092
- 29092:29092
deephaven:
image: redpanda-dxfeed-financial-data/dx-server:latest
environment:
- START_OPTS=-Xmx12g -Ddeephaven.application.dir=/data/app.d
depends_on:
- redpanda
ports:
- "${DEEPHAVEN_PORT:-10000}:10000"
volumes:
- ./data:/data
dxfeed-trade:
image: redpanda-dxfeed-financial-data/dxfeed-publish-trade:latest
dxfeed-quote:
image: redpanda-dxfeed-financial-data/dxfeed-publish-quote:latest
dxfeed-candle:
image: redpanda-dxfeed-financial-data/dxfeed-publish-candle:latest
dxfeed-profile:
image: redpanda-dxfeed-financial-data/dxfeed-publish-profile:latest
dxfeed-summary:
image: redpanda-dxfeed-financial-data/dxfeed-publish-summary:latest
dxfeed-order:
image: redpanda-dxfeed-financial-data/dxfeed-publish-order:latest
dxfeed-underlying:
image: redpanda-dxfeed-financial-data/dxfeed-publish-underlying:latest
dxfeed-timeandsale:
image: redpanda-dxfeed-financial-data/dxfeed-publish-timeandsale:latest
dxfeed-series:
image: redpanda-dxfeed-financial-data/dxfeed-publish-series:latest
volumes:
web-tmp:
api-cache: