-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
213 lines (199 loc) · 5.54 KB
/
Copy pathdocker-compose.yaml
File metadata and controls
213 lines (199 loc) · 5.54 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
# PROD CONFIG
# services:
# # 1. Database
# mongo:
# image: mongo
# volumes:
# - ./mongo-data:/data/db
# healthcheck:
# test: echo "db.runCommand('ping').ok" | mongosh localhost:27017/test --quiet
# interval: 10s
# timeout: 5s
# retries: 5
# start_period: 15s
# # 2. Message Queue
# rabbitmq:
# image: rabbitmq:3-management
# hostname: rabbitmq
# environment:
# - RABBITMQ_DEFAULT_USER=guest
# - RABBITMQ_DEFAULT_PASS=guest
# ports:
# - "127.0.0.1:15672:15672" # Dashboard MQ
# healthcheck:
# test: rabbitmq-diagnostics -q ping
# interval: 10s
# timeout: 5s
# retries: 5
# start_period: 15s
# volumes:
# - rabbitmq_data:/var/lib/rabbitmq/mnesia
# # 3. Object Storage
# minio:
# image: minio/minio
# ports:
# - "127.0.0.1:9000:9000" # Port API
# - "127.0.0.1:9001:9001" # Port Console
# environment:
# MINIO_ROOT_USER: admin
# MINIO_ROOT_PASSWORD: password123
# command: server /data --console-address ":9001"
# volumes:
# - minio_data:/data
# healthcheck:
# test: curl -f http://localhost:9000/minio/health/live || exit 1
# interval: 10s
# timeout: 5s
# retries: 5
# start_period: 10s
# redis:
# image: redis:7-alpine
# volumes:
# - redis_data:/data
# healthcheck:
# test: ["CMD", "redis-cli", "ping"]
# interval: 10s
# timeout: 5s
# retries: 5
# # 4. Web App (PRODUCTION)
# web_app:
# build: .
# command: npm start # BERUBAH: Gunakan script start standar
# ports:
# - "127.0.0.1:3000:3000" # Map ke localhost VPS
# depends_on:
# mongo:
# condition: service_healthy
# rabbitmq:
# condition: service_healthy
# minio:
# condition: service_healthy
# env_file: .env # Gunakan file .env
# volumes:
# - temp_uploads:/app/temp
# # 5. Background Worker (PRODUCTION)
# worker_service:
# build: .
# command: npm run worker # BERUBAH: Gunakan script worker standar
# depends_on:
# mongo:
# condition: service_healthy
# rabbitmq:
# condition: service_healthy
# minio:
# condition: service_healthy
# env_file: .env # Gunakan file .env
# volumes:
# - temp_uploads:/app/temp
# volumes:
# temp_uploads:
# minio_data:
# redis_data:
# rabbitmq_data:
# DEVELOPMENT CONFIG
services:
# 1. Database
mongo:
image: mongo
volumes:
- ./mongo-data:/data/db
healthcheck:
test: echo "db.runCommand('ping').ok" | mongosh localhost:27017/test --quiet
interval: 10s
timeout: 5s
retries: 5
start_period: 15s # Memberi waktu ekstra saat Mongo melakukan recovery
# 2. Message Queue
rabbitmq:
image: rabbitmq:3-management
ports:
- "15672:15672" # Dashboard admin RabbitMQ
healthcheck:
test: rabbitmq-diagnostics -q ping
interval: 10s
timeout: 5s
retries: 5
start_period: 15s
# 3. Object Storage
minio:
image: minio/minio
ports:
- "9000:9000" # Port API
- "9001:9001" # Port Console
environment:
MINIO_ROOT_USER: admin
MINIO_ROOT_PASSWORD: password123
command: server /data --console-address ":9001"
volumes:
- minio_data:/data
healthcheck:
test: curl -f http://localhost:9000/minio/health/live || exit 1
interval: 10s
timeout: 5s
retries: 5
start_period: 10s
redis:
image: redis:7-alpine
ports:
- "6379:6379"
volumes:
- redis_data:/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 5
# 4. Web App
web_app:
build: . # Build dari folder saat ini
command: npm run dev # development
ports:
- "80:3000" # Map port 80 VPS ke port 3000 container (komen jika expose localhost)
depends_on:
mongo:
condition: service_healthy
rabbitmq:
condition: service_healthy
minio:
condition: service_healthy
redis:
condition: service_started
volumes:
- .:/app
- /app/node_modules
- temp_uploads:/app/temp # Shared volume buat simpan foto sementara
# 5. Background Worker
worker_service:
build: . # Build dari folder yang sama
command: npm run worker:dev # dev
depends_on:
mongo:
condition: service_healthy
rabbitmq:
condition: service_healthy
minio:
condition: service_healthy
environment:
- MONGO_URI=mongodb://mongo:27017/db_inventaris
- RABBITMQ_URI=amqp://rabbitmq
- MINIO_ENDPOINT=minio
- MINIO_PORT=9000
- MINIO_ACCESS_KEY=admin
- MINIO_SECRET_KEY=password123
volumes:
- .:/app
- /app/node_modules
- temp_uploads:/app/temp
# nginx:
# image: nginx:alpine
# ports:
# - "80:80" # Nginx jalan di port 80 laptop kamu
# volumes:
# - ./nginx.conf:/etc/nginx/nginx.conf:ro
# depends_on:
# - web_app
# - minio
volumes:
temp_uploads:
minio_data:
redis_data: