-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.prod.yaml
More file actions
72 lines (64 loc) · 1.76 KB
/
docker-compose.prod.yaml
File metadata and controls
72 lines (64 loc) · 1.76 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
services:
backend:
image: me-central1-docker.pkg.dev/rahhal-437608/rahhal/backend:latest
build:
context: ./api-gateway
dockerfile: Dockerfile.prod
env_file:
- ./api-gateway/.env
entertainment:
image: me-central1-docker.pkg.dev/rahhal-437608/rahhal/entertainment:latest
build:
context: ./entertainment
dockerfile: Dockerfile.prod
env_file:
- ./entertainment/.env
product:
image: me-central1-docker.pkg.dev/rahhal-437608/rahhal/product:latest
build:
context: ./product
dockerfile: Dockerfile.prod
env_file:
- ./product/.env
order:
image: me-central1-docker.pkg.dev/rahhal-437608/rahhal/order:latest
build:
context: ./order
dockerfile: Dockerfile.prod
env_file:
- ./order/.env
user:
image: me-central1-docker.pkg.dev/rahhal-437608/rahhal/user:latest
build:
context: ./user
dockerfile: Dockerfile.prod
env_file:
- ./user/.env
booking:
image: me-central1-docker.pkg.dev/rahhal-437608/rahhal/booking:latest
build:
context: ./booking
dockerfile: Dockerfile.prod
env_file:
- ./booking/.env
payment:
image: me-central1-docker.pkg.dev/rahhal-437608/rahhal/payment:latest
build:
context: ./payment
dockerfile: Dockerfile.prod
env_file:
- ./payment/.env
authentication:
image: me-central1-docker.pkg.dev/rahhal-437608/rahhal/authentication:latest
build:
context: ./authentication
dockerfile: Dockerfile.prod
env_file:
- ./authentication/.env
notification:
image: me-central1-docker.pkg.dev/rahhal-437608/rahhal/notification:latest
build:
context: ./notification
dockerfile: Dockerfile.prod
env_file:
- ./notification/.env