-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
147 lines (126 loc) · 3.41 KB
/
docker-compose.dev.yml
File metadata and controls
147 lines (126 loc) · 3.41 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
# ==========================================
# Development Docker Compose Configuration
# Usage: docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d
# ==========================================
services:
# ==========================================
# Infrastructure - Development Overrides
# ==========================================
database:
environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-password}
# Expose ports for local development tools
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
- ./database/init.sql:/docker-entrypoint-initdb.d/init.sql
redis:
# No password for development
command: redis-server --appendonly yes
ports:
- "6379:6379"
rabbitmq:
environment:
RABBITMQ_DEFAULT_USER: ${RABBITMQ_USER:-guest}
RABBITMQ_DEFAULT_PASS: ${RABBITMQ_PASS:-guest}
# Expose management UI for development
ports:
- "5672:5672"
- "15672:15672"
# ==========================================
# Frontend Applications - Development
# ==========================================
frontend:
# Expose for direct access
ports:
- "80:80"
admin:
# Expose for direct access
ports:
- "8080:80"
# ==========================================
# Gateway - Development
# ==========================================
gateway:
# Expose for API testing
ports:
- "3080:8080"
# ==========================================
# Backend Services - Development
# All services exposed for debugging
# ==========================================
catalog:
environment:
- NODE_ENV=development
- LOG_LEVEL=debug
ports:
- "3001:3001"
inventory:
environment:
- NODE_ENV=development
- LOG_LEVEL=debug
ports:
- "3006:3006"
shopping:
environment:
- NODE_ENV=development
- LOG_LEVEL=debug
ports:
- "3004:3004"
order-payment:
environment:
- NODE_ENV=development
- LOG_LEVEL=debug
ports:
- "3002:3002"
fulfillment:
environment:
- NODE_ENV=development
- LOG_LEVEL=debug
ports:
- "3003:3003"
user-auth:
environment:
- NODE_ENV=development
- LOG_LEVEL=debug
ports:
- "3000:3000"
platform:
environment:
- NODE_ENV=development
- LOG_LEVEL=debug
ports:
- "3005:3005"
# ==========================================
# Monitoring - COMMENTED OUT for Development
# Uncomment if you need monitoring locally
# ==========================================
# prometheus:
# image: prom/prometheus:v3.2.0
# ports:
# - "9090:9090"
# volumes:
# - ./infrastructure/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
# - prometheus_data:/prometheus
# command:
# - '--config.file=/etc/prometheus/prometheus.yml'
# - '--storage.tsdb.path=/prometheus'
# grafana:
# image: grafana/grafana:11.5.0
# ports:
# - "3100:3000"
# environment:
# - GF_SECURITY_ADMIN_USER=admin
# - GF_SECURITY_ADMIN_PASSWORD=admin
# volumes:
# - grafana_data:/var/lib/grafana
# depends_on:
# - prometheus
# ==========================================
# Volumes
# ==========================================
volumes:
postgres_data:
# prometheus_data: # Uncomment if using monitoring
# grafana_data: # Uncomment if using monitoring