forked from macterra/metatron-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (43 loc) · 880 Bytes
/
docker-compose.yml
File metadata and controls
49 lines (43 loc) · 880 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.7"
services:
tesseract:
image: macterra/tesseract-node:v21.08.03
volumes:
- ./tesseract:/data
ports:
- 7337:7337
- 8337:8337
scanner_tess:
image: ghcr.io/cryptotechguru/metatron-scanner:v22.01.04
volumes:
- ./data:/app/data
depends_on:
- redis
- ipfs
- tesseract
environment:
- SCANNER_CHAIN=TESS
- SCANNER_START=1
env_file:
- metatron.env
vault:
image: ghcr.io/cryptotechguru/metatron-vault:v22.01.04
ports:
- "5000:5000"
env_file:
- metatron.env
ipfs:
image: ipfs/go-ipfs:v0.8.0
ports:
- "4001:4001"
- "8080:8080"
- "5001:5001"
volumes:
- ./data/export:/export
- ./data/ipfs:/data/ipfs
redis:
image: redis:6.2.4
ports:
- "6397"
volumes:
- ./data/redis:/data