forked from matter-labs/zksync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
83 lines (83 loc) · 2.12 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
version: '3.2'
services:
nginx:
image: "gluk64/franklin-nginx:latest"
ports:
- "80:80"
#volumes:
# - type: bind
# source: ./volumes/html
# target: /usr/share/nginx/html
server:
image: "gluk64/franklin:server"
env_file: $ENV_FILE
environment:
- DATABASE_URL=postgres://postgres@postgres/plasma
- WEB3_URL=http://geth:8545
- NODE_NAME=docker
- POD_NAME=docker/server
ports:
- "3000:3000"
prover:
image: "gluk64/franklin:prover"
env_file: $ENV_FILE
environment:
- PROVER_DATABASE_URL=postgres://postgres@postgres/plasma
- NODE_NAME=docker
- POD_NAME=docker/prover
volumes:
- type: bind
source: ./keys
target: /keys
postgres:
image: "postgres:10.4"
ports:
- "5432:5432"
volumes:
- type: bind
source: ./volumes/postgres
target: /var/lib/postgresql/data
geth:
image: "gluk64/franklin:geth"
# image: "ethereum/client-go"
# command: '--rpcapi "db,personal,eth,net,web3" --rpccorsdomain="*" --networkid=456719 --rpc --rpcaddr="0.0.0.0"'
ports:
- "8545:8545"
- "8546:8546"
volumes:
- type: bind
source: ./volumes/geth
target: /var/lib/geth/data
blockscout_postgres:
image: "postgres:10.4"
volumes:
- type: bind
source: ./volumes/blockscout_postgres
target: /var/lib/postgresql/data
blockscout:
image: "gluk64/blockscout"
command: /bin/sh -c "mix phx.server"
ports:
- "4000:4000"
environment:
- MIX_ENV=prod
- DATABASE_URL=postgresql://postgres:@blockscout_postgres:5432/explorer?ssl=false
- ETHEREUM_JSONRPC_VARIANT=geth
- ETHEREUM_JSONRPC_HTTP_URL=http://geth:8545
- COIN=DAI
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
metabase:
image: metabase/metabase
ports:
- 2112:3000
volumes:
- ./metabase-data:/metabase-data