forked from gnosis/conditional-tokens-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
40 lines (40 loc) · 859 Bytes
/
docker-compose.yaml
File metadata and controls
40 lines (40 loc) · 859 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
version: '3'
services:
graph-node:
image: graphprotocol/graph-node
ports:
- '8000:8000'
- '8020:8020'
environment:
postgres_host: 'postgres:5432'
postgres_user: postgres
postgres_pass: letmein
postgres_db: postgres
ipfs: 'ipfs:5001'
ethereum: 'development:http://ganache:8545'
depends_on:
- ipfs
- postgres
- ganache
ipfs:
image: ipfs/go-ipfs:v0.4.23
ports:
- '5001:5001'
postgres:
image: postgres
environment:
POSTGRES_PASSWORD: letmein
ganache:
image: trufflesuite/ganache-cli
command: "-d -i 50"
ports:
- '8545:8545'
hg-subgraph:
build: ./docker/hg-subgraph/
depends_on:
- graph-node
deploy-contracts:
build: ./docker/deploy-contracts/
command: "./prepare_db.sh"
depends_on:
- ganache