-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
80 lines (74 loc) · 1.71 KB
/
docker-compose.yml
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
version: "3"
services:
redis-service:
container_name: redis-service
image: redis
ports:
- "6379:6379"
mongo-service:
container_name: mongo-service
image: mongo
ports:
- "27017:27017"
api-getaway:
container_name: api-getaway
image: nginx
ports:
- "8080:8080"
depends_on:
- auth-service
- post-service
- comment-service
volumes:
- ./api-getaway/nginx.conf:/etc/nginx/nginx.conf:ro
auth-service:
container_name: auth-service
build: ./auth-service
restart: always
ports:
- "8081:8081"
depends_on:
- redis-service
- mongo-service
environment:
- PORT=8081
- REDIS_HOST=redis-service
- REDIS_PORT=6379
- MONGODB_URL=mongodb://mongo-service:27017/micro-auth
post-service:
container_name: post-service
build: ./post-service
restart: always
ports:
- "8082:8082"
depends_on:
- redis-service
- mongo-service
- auth-service
environment:
- PORT=8082
- REDIS_HOST=redis-service
- REDIS_PORT=6379
- MONGODB_URL=mongodb://mongo-service:27017/micro-posts
- AUTH_SERVICE_BASE_URL=http://auth-service:8081
comment-service:
container_name: comment-service
build: ./comment-service
restart: always
ports:
- "8083:8083"
depends_on:
- redis-service
- mongo-service
- auth-service
environment:
- PORT=8083
- REDIS_HOST=redis-service
- REDIS_PORT=6379
- MONGODB_URL=mongodb://mongo-service:27017/micro-comments
- AUTH_SERVICE_BASE_URL=http://auth-service:8081
frontend:
container_name: frontend
build: ./frontend
ports:
- "8888:80"