-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
67 lines (61 loc) · 1.15 KB
/
docker-compose.yml
File metadata and controls
67 lines (61 loc) · 1.15 KB
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
65
66
67
version: "3.7"
services:
scanner_tsr:
image: macterra/metatron-scanner
volumes:
- ./data:/app/data
depends_on:
- ipfs
- redis
environment:
- SCANNER_CHAIN=TSR
- SCANNER_START=100999
env_file:
- metatron.env
scanner_tbtc:
image: macterra/metatron-scanner
volumes:
- ./data:/app/data
depends_on:
- ipfs
- redis
environment:
- SCANNER_CHAIN=tBTC
- SCANNER_START=2034420
env_file:
- metatron.env
scanner_btc:
image: macterra/metatron-scanner
volumes:
- ./data:/app/data
depends_on:
- ipfs
- redis
environment:
- SCANNER_CHAIN=BTC
- SCANNER_START=691459
env_file:
- metatron.env
vault:
image: macterra/metatron-vault
ports:
- "5000:5000"
depends_on:
- ipfs
env_file:
- metatron.env
ipfs:
image: ipfs/go-ipfs:v0.8.0
ports:
- "4001"
- "8080:8080"
- "5001"
volumes:
- ./data/export:/export
- ./data/ipfs:/data/ipfs
redis:
image: redis:6.2.4
ports:
- "6397"
volumes:
- ./data/redis:/data