forked from rsksmart/rif-rollup
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
56 lines (54 loc) · 1.21 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
version: '3.2'
services:
postgres:
image: "postgres:12"
ports:
- "5432:5432"
volumes:
- type: bind
source: ./volumes/postgres
target: /var/lib/postgresql/data
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
rskj:
build:
dockerfile: Dockerfile
context: ./docker/rskj
ports:
- "4445:4445"
- "4444:4444"
volumes:
- type: bind
source: ./volumes/rskj
target: /var/lib/rsk
dev-liquidity-token-watcher:
image: "matterlabs/dev-liquidity-token-watcher:latest"
env_file:
- ./etc/env/docker.env
ports:
- "9975:9975"
volumes:
- ./etc/tokens/:/etc/tokens
dev-ticker:
image: "matterlabs/dev-ticker:latest"
ports:
- "9876:9876"
volumes:
- ./etc/tokens/:/etc/tokens
tesseracts:
image: "adria0/tesseracts"
command: --cfg /tesseracts.toml -vvv
ports:
- "8000:8000"
volumes:
- ./etc/tesseracts/tesseracts.toml:/tesseracts.toml
- type: bind
source: ./volumes/tesseracts
target: /var/lib/tesseracts/data
elastic:
image: elasticsearch:7.10.1
ports:
- "9200:9200"
- "9300:9300"
environment:
- discovery.type=single-node