this repo has no description
1services:
2 db:
3 image: postgres:17-alpine
4 environment:
5 POSTGRES_USER: postgres
6 POSTGRES_PASSWORD: postgres
7 ports:
8 - "5432:5432"
9 volumes:
10 - pgdata:/var/lib/postgresql/data
11 healthcheck:
12 test: ["CMD-SHELL", "pg_isready -U postgres"]
13 interval: 2s
14 timeout: 5s
15 retries: 5
16
17 indexer:
18 build:
19 context: apps/indexer
20 dockerfile: ../Containerfile.indexer
21 depends_on:
22 db:
23 condition: service_healthy
24 environment:
25 DATABASE_URL: ecto://postgres:postgres@db/opake_indexer_prod
26 SECRET_KEY_BASE: dev-only-please-change-in-production-64-chars-aaaaaaaaaaaaaaaa
27 PHX_HOST: localhost
28 PHX_SERVER: "true"
29 JETSTREAM_URL: wss://jetstream2.us-east.bsky.network/subscribe
30 ports:
31 - "6100:6100"
32 profiles:
33 - full
34
35volumes:
36 pgdata: