forked from rhinestonewtf/module-sdk-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
35 lines (33 loc) · 836 Bytes
/
docker-compose.yaml
File metadata and controls
35 lines (33 loc) · 836 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
services:
anvil:
image: ghcr.io/foundry-rs/foundry:nightly-25598999a2b33ac6ccfa35c347f3c98aba8e0061
ports: ["8545:8545"]
entrypoint:
[
"anvil",
"--fork-url",
"https://eth-sepolia.g.alchemy.com/v2/${ALCHEMY_API_KEY}",
"--host",
"0.0.0.0",
"--silent",
"--hardfork",
"prague",
]
platform: linux/x86_64
mock-paymaster:
restart: always
depends_on:
- anvil
image: ghcr.io/pimlicolabs/mock-verifying-paymaster:main
ports: ["3000:3000"]
environment:
- ALTO_RPC=http://alto:4337
- ANVIL_RPC=http://anvil:8545
alto:
depends_on:
- anvil
image: ghcr.io/pimlicolabs/mock-alto-bundler:main
ports: ["4337:4337"]
environment:
- ANVIL_RPC=http://anvil:8545
- SKIP_DEPLOYMENTS=true