-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.render-local.yml
More file actions
142 lines (130 loc) · 3 KB
/
Copy pathdocker-compose.render-local.yml
File metadata and controls
142 lines (130 loc) · 3 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
services:
gateway-service:
build: ./gateway-service
ports:
- "8080:8080"
depends_on:
- cliente
- corredor
- mantenciones
- mecanicos
- personalaseo
- seguro
- vehiculo
- vendedor
- ventas-Update
- auth-service
- testDrive
environment:
- EUREKA_ENABLED=false
- CLIENTE_URL=http://cliente:8082
- CORREDOR_URL=http://corredor:8091
- MANTENCIONES_URL=http://mantenciones:8085
- MECANICOS_URL=http://mecanicos:8084
- PERSONALASEO_URL=http://personalaseo:8088
- SEGURO_URL=http://seguro:8090
- VEHICULO_URL=http://vehiculo:8089
- VENDEDOR_URL=http://vendedor:8081
- VENTAS_UPDATE_URL=http://ventas-Update:8083
- AUTH_SERVICE_URL=http://auth-service:8086
- TEST_DRIVE_URL=http://testDrive:8092
cliente:
build: ./cliente
ports:
- "8082:8082"
environment:
- EUREKA_ENABLED=false
corredor:
build: ./corredorSeguro
ports:
- "8091:8091"
environment:
- EUREKA_ENABLED=false
mantenciones:
build: ./mantenciones
ports:
- "8085:8085"
depends_on:
- cliente
- vehiculo
- mecanicos
environment:
- EUREKA_ENABLED=false
- APP_DISCOVERY_ENABLED=false
- CLIENTE_URL=http://cliente:8082
- VEHICULO_URL=http://vehiculo:8089
- MECANICOS_URL=http://mecanicos:8084
mecanicos:
build: ./mecanicos
ports:
- "8084:8084"
environment:
- EUREKA_ENABLED=false
personalaseo:
build: ./personalaseo
ports:
- "8088:8088"
environment:
- EUREKA_ENABLED=false
seguro:
build: ./seguro
ports:
- "8090:8090"
depends_on:
- vehiculo
- cliente
- corredor
environment:
- EUREKA_ENABLED=false
- APP_DISCOVERY_ENABLED=false
- CLIENTE_URL=http://cliente:8082
- VEHICULO_URL=http://vehiculo:8089
- CORREDOR_URL=http://corredor:8091
vehiculo:
build: ./vehiculo
ports:
- "8089:8089"
environment:
- EUREKA_ENABLED=false
vendedor:
build: ./vendedor
ports:
- "8081:8081"
environment:
- EUREKA_ENABLED=false
ventas-Update:
image: ventas-update
build: ./ventas-Update
ports:
- "8083:8083"
depends_on:
- cliente
- vehiculo
- vendedor
environment:
- EUREKA_ENABLED=false
- APP_DISCOVERY_ENABLED=false
- CLIENTE_URL=http://cliente:8082
- VEHICULO_URL=http://vehiculo:8089
- VENDEDOR_URL=http://vendedor:8081
auth-service:
build: ./auth-service
ports:
- "8086:8086"
environment:
- EUREKA_ENABLED=false
testDrive:
image: testdrive
build: ./testDrive
ports:
- "8092:8092"
depends_on:
- cliente
- vehiculo
- vendedor
environment:
- EUREKA_ENABLED=false
- APP_DISCOVERY_ENABLED=false
- CLIENTE_URL=http://cliente:8082
- VEHICULO_URL=http://vehiculo:8089
- VENDEDOR_URL=http://vendedor:8081