17 lines
341 B
YAML
17 lines
341 B
YAML
version: "3.2"
|
|
services:
|
|
lighthouse:
|
|
restart: always
|
|
image: vulcanize/lighthouse:local
|
|
environment:
|
|
- NETWORK=mainnet
|
|
volumes:
|
|
- lighthouse_db:/root/.lighthouse
|
|
ports:
|
|
- 127.0.0.1:5052:5052
|
|
- 9000:9000/udp
|
|
- 9000:9000/tcp
|
|
command: ["tail", "-f", "/dev/null"]
|
|
|
|
volumes:
|
|
lighthouse_db: |