@@ -2,9 +2,9 @@ services:
22 # === Core Infrastructure ===
33
44 # Shared PostgreSQL database (used by both application and Langfuse)
5- rag_search_db :
5+ rag-search-db :
66 image : postgres:14.1
7- container_name : rag_search_db
7+ container_name : rag-search-db
88 restart : always
99 environment :
1010 POSTGRES_USER : postgres
@@ -89,11 +89,11 @@ services:
8989 container_name : resql
9090 image : ghcr.io/buerokratt/resql:v1.3.6
9191 depends_on :
92- rag_search_db :
92+ rag-search-db :
9393 condition : service_started
9494 environment :
9595 - sqlms.datasources.[0].name=byk
96- - sqlms.datasources.[0].jdbcUrl=jdbc:postgresql://rag_search_db :5432/rag-search # For LocalDb Use
96+ - sqlms.datasources.[0].jdbcUrl=jdbc:postgresql://rag-search-db :5432/rag-search # For LocalDb Use
9797 # sqlms.datasources.[0].jdbcUrl=jdbc:postgresql://171.22.247.13:5435/byk?sslmode=require
9898 - sqlms.datasources.[0].username=postgres
9999 - sqlms.datasources.[0].password=dbadmin
@@ -222,15 +222,15 @@ services:
222222 container_name : langfuse-worker
223223 restart : always
224224 depends_on :
225- - rag_search_db
225+ - rag-search-db
226226 - minio
227227 - redis
228228 - clickhouse
229229 ports :
230230 - " 127.0.0.1:3030:3030"
231231 environment :
232232 # Database
233- DATABASE_URL : postgresql://postgres:dbadmin@rag_search_db :5432/rag-search
233+ DATABASE_URL : postgresql://postgres:dbadmin@rag-search-db :5432/rag-search
234234
235235 # Auth & Security (TEST VALUES ONLY - NOT FOR PRODUCTION)
236236 # gitleaks:allow - These are test-only hex strings
@@ -279,13 +279,13 @@ services:
279279 restart : always
280280 depends_on :
281281 - langfuse-worker
282- - rag_search_db
282+ - rag-search-db
283283 - clickhouse
284284 ports :
285285 - " 3000:3000"
286286 environment :
287287 # Database
288- DATABASE_URL : postgresql://postgres:dbadmin@rag_search_db :5432/rag-search
288+ DATABASE_URL : postgresql://postgres:dbadmin@rag-search-db :5432/rag-search
289289
290290 # Auth & Security (TEST VALUES ONLY - NOT FOR PRODUCTION)
291291 # gitleaks:allow - These are test-only hex strings
0 commit comments