13 lines
323 B
YAML
13 lines
323 B
YAML
version: '3'
|
|
services:
|
|
bootnode:
|
|
image: parity/parity:latest
|
|
container_name: bootnode
|
|
volumes:
|
|
- ./bootnode:/home/parity/.local/share/io.parity.ethereum
|
|
command: "--config /home/parity/.local/share/io.parity.ethereum/bootnode.toml"
|
|
ports:
|
|
- 8545:8545
|
|
- 8546:8546
|
|
- 30303:30303
|