-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (47 loc) · 961 Bytes
/
docker-compose.yml
File metadata and controls
51 lines (47 loc) · 961 Bytes
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
version: '3.8'
services:
productos:
build:
context: ./FoodExpress-Productos
args:
SERVICE_PORT: 8001
ports:
- "8001:8001"
environment:
- SPRING_PROFILES_ACTIVE=prod
clientes:
build:
context: ./FoodExpress-Clientes
args:
SERVICE_PORT: 8002
ports:
- "8002:8002"
environment:
- SPRING_PROFILES_ACTIVE=prod
cocina_menu:
build:
context: ./FoodExpress-Cocina_Menu
args:
SERVICE_PORT: 8003
ports:
- "8003:8003"
environment:
- SPRING_PROFILES_ACTIVE=prod
comentarios:
build:
context: ./FoodExpress-Comentarios
args:
SERVICE_PORT: 8004
ports:
- "8004:8004"
environment:
- SPRING_PROFILES_ACTIVE=prod
pedidos:
build:
context: ./FoodExpress-Pedidos
args:
SERVICE_PORT: 8005
ports:
- "8005:8005"
environment:
- SPRING_PROFILES_ACTIVE=prod