14 lines
239 B
YAML
14 lines
239 B
YAML
version: '3'
|
|
services:
|
|
anvil:
|
|
container_name: anvil
|
|
image: ghcr.io/foundry-rs/foundry:nightly
|
|
entrypoint: 'anvil --host 0.0.0.0'
|
|
ports:
|
|
- '0100:8545'
|
|
|
|
redis:
|
|
image: redis:7.0.10
|
|
ports:
|
|
- '0101:6379'
|