-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (37 loc) · 934 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (37 loc) · 934 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
# 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.18.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: private:http://ganache:8545
GRAPH_LOG: "graph.log"
GRAPH_GRAPHQL_MAX_FIRST: 1000
ipfs:
image: dorgtech/test-env-experimental-ipfs:4.0.9
ports:
- 5001:5001
postgres:
image: dorgtech/test-env-experimental-postgres:4.0.9
ports:
- 9432:5432
environment:
POSTGRES_PASSWORD: "letmein"
ganache:
image: dorgtech/test-env-experimental-ganache:4.0.9
ports:
- 8545:8545