-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
151 lines (143 loc) · 3.77 KB
/
Copy pathdocker-compose.yml
File metadata and controls
151 lines (143 loc) · 3.77 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
version: "3.8"
services:
frontend:
build:
context: ./frontend
args:
VITE_API_URL: http://localhost:8000
ports:
- "80:80"
depends_on:
backend:
condition: service_healthy
restart: unless-stopped
networks:
- explainai
backend:
build:
context: ./backend
ports:
- "8000:8000"
environment:
- REDIS_URL=redis://redis:6379
- WEAVIATE_URL=http://weaviate:8080
- DATA_DIR=/data/sessions
- SESSION_TTL_SECONDS=3600
- MAX_CONCURRENT_JOBS=3
- CLEANUP_INTERVAL_SECONDS=300
- API_BASE_URL=http://localhost:8000
- CORS_ORIGINS=http://localhost,http://localhost:80,http://localhost:3000,http://localhost:5173
- GOOGLE_API_KEY=${GOOGLE_API_KEY}
- CONVERTAPI_KEY=${CONVERTAPI_KEY}
- GOOGLE_APPLICATION_CREDENTIALS=/app/credentials.json
- DEBUG=false
volumes:
- sessions_data:/data/sessions
- ./credentials.json:/app/credentials.json:ro
depends_on:
redis:
condition: service_healthy
weaviate:
condition: service_healthy
restart: unless-stopped
networks:
- explainai
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
arq-worker:
build:
context: ./backend
command: arq core.arq_worker.WorkerSettings
environment:
- REDIS_URL=redis://redis:6379
- WEAVIATE_URL=http://weaviate:8080
- DATA_DIR=/data/sessions
- SESSION_TTL_SECONDS=3600
- GOOGLE_API_KEY=${GOOGLE_API_KEY}
- CONVERTAPI_KEY=${CONVERTAPI_KEY}
- GOOGLE_APPLICATION_CREDENTIALS=/app/credentials.json
- DEBUG=false
volumes:
- sessions_data:/data/sessions
- ./credentials.json:/app/credentials.json:ro
depends_on:
redis:
condition: service_healthy
weaviate:
condition: service_healthy
restart: unless-stopped
networks:
- explainai
arq-video-worker:
build:
context: ./backend
command: arq core.arq_worker.VideoWorkerSettings
environment:
- REDIS_URL=redis://redis:6379
- WEAVIATE_URL=http://weaviate:8080
- DATA_DIR=/data/sessions
- SESSION_TTL_SECONDS=3600
- ARQ_VIDEO_MAX_JOBS=${ARQ_VIDEO_MAX_JOBS:-1}
- VIDEO_GPU_CODEC=${VIDEO_GPU_CODEC:-}
- GOOGLE_API_KEY=${GOOGLE_API_KEY}
- CONVERTAPI_KEY=${CONVERTAPI_KEY}
- GOOGLE_APPLICATION_CREDENTIALS=/app/credentials.json
- DEBUG=false
volumes:
- sessions_data:/data/sessions
- ./credentials.json:/app/credentials.json:ro
depends_on:
redis:
condition: service_healthy
weaviate:
condition: service_healthy
restart: unless-stopped
networks:
- explainai
redis:
image: redis:7-alpine
ports:
- "6379:6379"
volumes:
- redis_data:/data
command: redis-server --appendonly yes
restart: unless-stopped
networks:
- explainai
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 5
weaviate:
image: semitechnologies/weaviate:1.24.1
ports:
- "8080:8080"
- "50051:50051"
environment:
- AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED=true
- PERSISTENCE_DATA_PATH=/var/lib/weaviate
- QUERY_DEFAULTS_LIMIT=25
- DEFAULT_VECTORIZER_MODULE=none
- CLUSTER_HOSTNAME=node1
volumes:
- weaviate_data:/var/lib/weaviate
restart: unless-stopped
networks:
- explainai
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/v1/.well-known/ready"]
interval: 10s
timeout: 5s
retries: 5
networks:
explainai:
driver: bridge
volumes:
sessions_data:
redis_data:
weaviate_data: