forked from paritytech/substrate-telemetry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
50 lines (47 loc) · 1.01 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
version: "3"
services:
telemetry-frontend:
build:
dockerfile: Dockerfile
context: ./frontend/
read_only: true
tmpfs:
- /var/cache/nginx:uid=101,gid=101
- /var/run:uid=101,gid=101
- /app/tmp:uid=101,gid=101
environment:
SUBSTRATE_TELEMETRY_URL: wss://feed.telemetry.3dpass.org/feed
ports:
- 3000:8000
expose:
- 3000
restart: unless-stopped
telemetry-backend-shard:
build:
dockerfile: Dockerfile
context: ./backend/
read_only: true
command: [
'telemetry_shard',
'--listen', '0.0.0.0:9001',
'--core', 'http://telemetry-backend-core:9000/shard_submit'
]
ports:
- 9001:9001
expose:
- 9001
restart: unless-stopped
telemetry-backend-core:
build:
dockerfile: Dockerfile
context: ./backend/
read_only: true
command: [
'telemetry_core',
'--listen', '0.0.0.0:9000'
]
ports:
- 9000:9000
expose:
- 9000
restart: unless-stopped