-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
35 lines (33 loc) · 900 Bytes
/
docker-compose.dev.yml
File metadata and controls
35 lines (33 loc) · 900 Bytes
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
# Minimal dev profile — only core services needed for frontend development
# Usage: docker compose -f docker-compose.yml -f docker-compose.dev.yml up postgres redis migrate api
#
# This avoids pulling minio, elasticsearch, grafana, prometheus, etc.
# The API will start but document upload/OCR features won't work without minio.
services:
api:
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
migrate:
condition: service_completed_successfully
environment:
- MINIO_ENDPOINT=
# Disable services that require missing images
elasticsearch:
profiles: ["full"]
minio:
profiles: ["full"]
minio-init:
profiles: ["full"]
prometheus:
profiles: ["full"]
grafana:
profiles: ["full"]
asynqmon:
profiles: ["full"]
nginx:
profiles: ["full"]
worker:
profiles: ["full"]