-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (43 loc) · 879 Bytes
/
docker-compose.yml
File metadata and controls
49 lines (43 loc) · 879 Bytes
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
version: "3.4"
services:
server:
build: .
expose:
- '8080'
volumes:
- ./data:/data
- api-cache:/cache
environment:
- JAVA_TOOL_OPTIONS=-Xmx4g -Ddeephaven.console.type=python -Ddeephaven.application.dir=/app.d
depends_on:
- prometheus
web:
image: ghcr.io/deephaven/web:${VERSION:-edge}
expose:
- '80'
volumes:
- ./data:/data
- web-tmp:/tmp
grpc-proxy:
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-edge}
environment:
- BACKEND_ADDR=server:8080
depends_on:
- server
expose:
- '8080'
envoy:
image: ghcr.io/deephaven/envoy:${VERSION:-edge}
depends_on:
- web
- grpc-proxy
- server
ports:
- "10000:10000"
prometheus:
image: prom/prometheus
ports:
- "9090:9090"
volumes:
web-tmp:
api-cache: