33 lines
850 B
YAML
33 lines
850 B
YAML
services:
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
restart: unless-stopped
|
|
user: postgres
|
|
environment:
|
|
- POSTGRES_PASSWORD=postgres
|
|
- POSTGRES_USER=postgres
|
|
volumes:
|
|
- ./init_db.sql:/docker-entrypoint-initdb.d/init_db.sql
|
|
- celo-indexer-pg:/var/lib/postgresql/data
|
|
ports:
|
|
- "127.0.0.1:5433:5432"
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
eth-indexer:
|
|
image: ghcr.io/grassrootseconomics/eth-indexer:latest
|
|
restart: unless-stopped
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
environment:
|
|
# Point to the correct celo-tracker JetStream instance
|
|
- INDEXER_JETSTREAM__ENDPOINT=nats://nats:4222
|
|
ports:
|
|
- 127.0.0.1:5002:5002
|
|
|
|
volumes:
|
|
celo-indexer-pg:
|
|
driver: local |