21 lines
590 B
YAML
Raw Normal View History

2025-02-10 09:44:44 +01:00
services:
2025-02-10 10:08:04 +01:00
crawler1:
2025-02-10 12:24:39 +01:00
build:
context: ..
dockerfile: ./docker/crawler.Dockerfile
2025-02-10 09:44:44 +01:00
environment:
2025-02-10 10:08:04 +01:00
- CRAWLER_LOGLEVEL=TRACE
# - CRAWLER_PUBLICIP= Set to override CURL to ip.codex.storage
- CRAWLER_METRICSADDRESS=0.0.0.0
- CRAWLER_METRICSPORT=8008
- CRAWLER_DATADIR=crawler_data
- CRAWLER_DISCPORT=8090
- CRAWLER_BOOTNODES=testnet_sprs
- CRAWLER_STEPDELAY=3000
- CRAWLER_REVISITDELAY=1440
2025-02-10 09:44:44 +01:00
ports:
- 8008:8008/tcp # Metrics
- 8090:8090/udp # DHT discovery
volumes:
2025-02-10 10:08:04 +01:00
- ./crawler_data:/crawler_data:z