2026-01-24 04:05:59 +03:00
|
|
|
services:
|
|
|
|
|
indexer_service:
|
2026-06-02 14:14:42 -03:00
|
|
|
image: lez/indexer_service
|
2026-01-24 04:05:59 +03:00
|
|
|
build:
|
2026-02-10 00:19:37 +03:00
|
|
|
context: ../..
|
2026-06-02 14:14:42 -03:00
|
|
|
dockerfile: lez/indexer/service/Dockerfile
|
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
|
|
|
|
|
- ./configs/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:
|