my-homelab-configs/infra/blockchain-devnet/docker-compose.yml

18 lines
398 B
YAML

services:
anvil:
image: ghcr.io/foundry-rs/foundry:latest
container_name: homelab-blockchain-anvil
command:
- anvil
- --host
- 0.0.0.0
- --port
- "8545"
- --chain-id
- "${BLOCKCHAIN_CHAIN_ID:-31337}"
- --block-time
- "${BLOCKCHAIN_BLOCK_TIME:-2}"
ports:
- "${BLOCKCHAIN_RPC_PORT:-8545}:8545"
restart: unless-stopped