-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.yml
More file actions
50 lines (42 loc) · 875 Bytes
/
compose.yml
File metadata and controls
50 lines (42 loc) · 875 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
42
43
44
45
46
47
48
49
50
version: '3.8'
services:
anvil:
container_name: efp-testnet-anvil
image: ghcr.io/foundry-rs/foundry:latest
entrypoint: /bin/sh
command: ["-c", "anvil --block-time 1 --base-fee 1 --gas-price 1 --host 0.0.0.0"]
tty: true
environment:
- ANVIL_IP_ADDR=0.0.0.0
ports:
- 8545:8545
networks:
- default
database:
extends:
file: indexer/compose.yml
service: database
# api:
# depends_on:
# - database
# extends:
# file: api/compose.yml
# service: api
indexer:
depends_on:
- database
extends:
file: indexer/compose.yml
service: indexer
contracts:
depends_on:
anvil:
condition: service_started
extends:
file: contracts-beta/compose.yml
service: contracts
volumes:
database:
networks:
default:
driver: bridge