2026-01-24 04:05:59 +03:00
|
|
|
services:
|
2026-06-23 15:07:33 +03:00
|
|
|
# Build-only: shared base image (toolchain + r0vm) referenced as the
|
|
|
|
|
# `risc0_base` named context below. It has no long-running command, so it
|
|
|
|
|
# only gets built — it exits immediately if started.
|
|
|
|
|
risc0_base:
|
|
|
|
|
image: lez/risc0_base
|
|
|
|
|
build:
|
|
|
|
|
context: ../../..
|
|
|
|
|
dockerfile: lez/docker/risc0-base.Dockerfile
|
|
|
|
|
|
2026-01-24 04:05:59 +03:00
|
|
|
indexer_service:
|
2026-06-02 14:14:42 -03:00
|
|
|
image: lez/indexer_service
|
2026-01-24 04:05:59 +03:00
|
|
|
build:
|
2026-06-23 14:29:23 +03:00
|
|
|
context: ../../..
|
2026-06-02 14:14:42 -03:00
|
|
|
dockerfile: lez/indexer/service/Dockerfile
|
2026-06-23 15:07:33 +03:00
|
|
|
additional_contexts:
|
|
|
|
|
risc0_base: "service:risc0_base"
|
2026-01-24 04:05:59 +03:00
|
|
|
container_name: indexer_service
|
|
|
|
|
ports:
|
|
|
|
|
- "8779:8779"
|
2026-02-10 00:19:37 +03:00
|
|
|
volumes:
|
|
|
|
|
# Mount configuration
|
2026-06-23 14:29:23 +03:00
|
|
|
- ./configs/docker/indexer_config.json:/etc/indexer_service/indexer_config.json
|
2026-03-20 03:07:04 +03:00
|
|
|
# Mount data volume
|
|
|
|
|
- indexer_data:/var/lib/indexer_service
|
|
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
indexer_data:
|