forked from Open-Source-Legal/OpenContracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.yml
More file actions
86 lines (79 loc) · 2.14 KB
/
Copy pathtest.yml
File metadata and controls
86 lines (79 loc) · 2.14 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
volumes:
test_postgres_data: {}
test_postgres_data_backups: {}
services:
vector-embedder:
image: jscrudato/vector-embedder-microservice
# build:
# context: .
# dockerfile: ./compose/local/vector-embedder/Dockerfile
container_name: vector-embedder
environment:
PORT: 8000
TRANSFORMERS_OFFLINE: 1
HF_DATASETS_OFFLINE: 1
docling-parser:
image: jscrudato/docsling-local
container_name: docling-parser
django: &django
build:
context: .
args:
- GITHUB_ACTIONS=${GITHUB_ACTIONS:-true}
dockerfile: ./compose/local/django/Dockerfile
image: opencontractserver_local_django
container_name: django
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
# - vector-embedder # Temporarily disabled - connection issues
# Note: celeryworker removed from here to avoid circular dependency
docling-parser:
condition: service_started
volumes:
- .:/app:z
env_file:
- ./.envs/.test/.django
- ./.envs/.test/.postgres
ports:
- "8000:8000"
command: /start
postgres:
build:
context: .
dockerfile: ./compose/production/postgres/Dockerfile
image: opencontractserver_production_postgres
volumes:
- test_postgres_data:/var/lib/postgresql/data:Z
- test_postgres_data_backups:/backups:z
- ./compose/production/postgres/init.sql:/docker-entrypoint-initdb.d/init.sql
env_file:
- ./.envs/.test/.postgres
healthcheck:
test: ["CMD-SHELL", "pg_isready -U oc_user -d opencontractserver"]
interval: 5s
timeout: 5s
retries: 5
start_period: 10s
redis:
image: redis:6
container_name: redis
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 5s
retries: 5
start_period: 10s
celeryworker:
<<: *django
image: opencontractserver_local_celeryworker
container_name: celeryworker
depends_on:
redis:
condition: service_healthy
postgres:
condition: service_healthy
ports: []
command: /start-celeryworker