forked from daostack/arc.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
40 lines (36 loc) · 913 Bytes
/
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
# A composition of services that are needed to run the tests of the client
# This is for DEVELOPMENT, not production
version: "3"
services:
graph-node:
image: 'graphprotocol/graph-node:v0.12.0'
ports:
- 8000:8000
- 8001:8001
- 8020:8020
links:
- ipfs
- postgres
- ganache
environment:
postgres_host: postgres:5432
postgres_user: postgres
postgres_pass: 'letmein'
postgres_db: postgres
ipfs: ipfs:5001
ethereum: development:http://ganache:8545
GRAPH_LOG: "graph.log"
ipfs:
image: daostack/subgraph-ipfs:ganache-0.0.1-rc.19-v5-0.0.23
ports:
- 5001:5001
postgres:
image: daostack/subgraph-postgres:ganache-0.0.1-rc.19-v5-0.0.23
ports:
- 9432:5432
environment:
POSTGRES_PASSWORD: 'letmein'
ganache:
image: daostack/migration:0.0.1-rc.19-v5
ports:
- 8545:8545