-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapps.yml
More file actions
91 lines (86 loc) · 2.38 KB
/
apps.yml
File metadata and controls
91 lines (86 loc) · 2.38 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
name: 'feature-tracker'
services:
feature-tracker-angular:
image: sivaprasadreddy/feature-tracker-angular
container_name: feature-tracker-angular
ports:
- "4200:4200"
restart: unless-stopped
deploy:
resources:
limits:
memory: 700m
ft-config-server:
image: sivaprasadreddy/ft-config-server
container_name: ft-config-server
environment:
- SPRING_PROFILES_ACTIVE=docker
ports:
- "8888:8888"
restart: unless-stopped
deploy:
resources:
limits:
memory: 700m
ft-api-gateway:
image: sivaprasadreddy/ft-api-gateway
container_name: ft-api-gateway
environment:
- SPRING_PROFILES_ACTIVE=docker
- SPRING_CONFIG_IMPORT=configserver:http://ft-config-server:8888
- FEATURE_SERVICE_URL=http://ft-feature-service:8081
- USER_SERVICE_URL=http://ft-user-service:8084
ports:
- "8989:8989"
restart: unless-stopped
deploy:
resources:
limits:
memory: 700m
ft-feature-service:
image: sivaprasadreddy/ft-feature-service
container_name: ft-feature-service
environment:
- SPRING_PROFILES_ACTIVE=docker
- SPRING_CONFIG_IMPORT=configserver:http://ft-config-server:8888
- DB_URL=jdbc:postgresql://features-db:5432/postgres
- DB_USERNAME=postgres
- DB_PASSWORD=postgres
- OAUTH2_SERVER_URL=http://keycloak:9191
- KAFKA_BROKER=kafka:9093
ports:
- "8081:8081"
restart: unless-stopped
deploy:
resources:
limits:
memory: 1024m
ft-notification-service:
image: sivaprasadreddy/ft-notification-service
container_name: ft-notification-service
environment:
- SPRING_PROFILES_ACTIVE=docker
- SPRING_CONFIG_IMPORT=configserver:http://ft-config-server:8888
- KAFKA_BROKER=kafka:9093
ports:
- "8083:8083"
restart: unless-stopped
deploy:
resources:
limits:
memory: 1024m
ft-user-service:
image: sivaprasadreddy/ft-user-service
container_name: ft-user-service
environment:
- SPRING_PROFILES_ACTIVE=docker
- SPRING_CONFIG_IMPORT=configserver:http://ft-config-server:8888
- KEYCLOAK_URL=http://keycloak:9191
- OAUTH2_SERVER_URL=http://keycloak:9191
ports:
- "8084:8084"
restart: unless-stopped
deploy:
resources:
limits:
memory: 1024m