-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
43 lines (37 loc) · 1.09 KB
/
Copy pathdocker-compose.dev.yml
File metadata and controls
43 lines (37 loc) · 1.09 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
# Development override for docker-compose.yml
# Usage: docker-compose -f docker-compose.yml -f docker-compose.dev.yml up
version: '3.8'
services:
qdrant:
# Enable debug logging for development
environment:
- QDRANT__LOG_LEVEL=DEBUG
# Mount local config for easy editing
volumes:
- ./docker/qdrant/config/dev.yaml:/qdrant/config/production.yaml
neo4j:
# Development settings
environment:
- NEO4J_dbms_logs_debug_level=DEBUG
- NEO4J_dbms_tx__log_rotation_retention__policy=1 days
# Expose additional ports for monitoring
ports:
- "7474:7474"
- "7687:7687"
- "7473:7473" # HTTPS
redis:
# Development: disable persistence for faster startup
command: redis-server --requirepass docpipeline123
# Add a database admin UI for development
neo4j-admin:
image: adminer:latest
container_name: doc_pipeline_adminer
ports:
- "8080:8080"
networks:
- doc_pipeline_network
profiles:
- admin
networks:
doc_pipeline_network:
driver: bridge