forked from graphprotocol/graph-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (31 loc) · 759 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
32 lines (31 loc) · 759 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
version: '3'
services:
ipfs:
image: docker.io/ipfs/kubo:v0.17.0
ports:
- '127.0.0.1:3001:5001'
postgres:
image: postgres:14
ports:
- '127.0.0.1:3011:5432'
command:
[
"postgres",
"-cshared_preload_libraries=pg_stat_statements",
"-clog_statement=all"
]
environment:
POSTGRES_USER: graph-node
POSTGRES_PASSWORD: let-me-in
POSTGRES_DB: graph-node
POSTGRES_INITDB_ARGS: "-E UTF8 --locale=C"
anvil:
image: ghcr.io/foundry-rs/foundry:latest
ports:
- '3021:8545'
command: "'anvil --host 0.0.0.0 --gas-limit 100000000000 --base-fee 1 --block-time 5'"
# graph-node ports:
# json-rpc: 8020
# http: 8000
# index: 8030
# metrics: 8040