-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (48 loc) · 1.29 KB
/
docker-compose.yml
File metadata and controls
50 lines (48 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
services:
tap:
image: ghcr.io/bluesky-social/indigo/tap:latest
ports:
- "2480:2480"
environment:
TAP_DATABASE_URL: sqlite:///data/tap.db
TAP_NO_REPLAY: "true"
TAP_SIGNAL_COLLECTION: fyi.atstore.listing.detail
TAP_COLLECTION_FILTERS: >-
fyi.atstore.listing.detail,
fyi.atstore.listing.review,
fyi.atstore.listing.reviewReply,
fyi.atstore.listing.favorite,
site.standard.publication,
site.standard.document,
com.germnetwork.declaration,
fund.at.actor.declaration,
fund.at.funding.contribute,
fund.at.funding.channel,
fund.at.funding.plan,
fund.at.graph.dependency
volumes:
- tap_data:/data
healthcheck:
test: ["CMD-SHELL", "wget -q -O- http://localhost:2480/health || exit 1"]
interval: 10s
timeout: 5s
retries: 5
start_period: 15s
postgres:
image: pgvector/pgvector:pg17
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: at_store
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 10s
timeout: 5s
retries: 5
volumes:
postgres_data:
tap_data: