-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.prod.yml
54 lines (44 loc) · 1.25 KB
/
docker-compose.prod.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
version: "3"
services:
todo-postgres:
image: nfarshid/todo-postgres:1.0
todo-cache-ingestion:
build:
dockerfile: ../Dockerfile.nodejs.prod
image: nfarshid/todo-cache-ingestion:1.0
todo-cache-service:
build:
dockerfile: ../Dockerfile.nodejs.prod
image: nfarshid/todo-cache-service:1.0
todo-search-ingestion:
build:
dockerfile: ../Dockerfile.nodejs.prod
image: nfarshid/todo-search-ingestion:1.0
command: sh /home/node/app/start.sh
todo-search-service:
build:
dockerfile: ../Dockerfile.nodejs.prod
image: nfarshid/todo-search-service:1.0
command: sh /home/node/app/start.sh
todo-storage-ingestion:
build:
dockerfile: ../Dockerfile.nodejs.prod
image: nfarshid/todo-storage-ingestion:1.0
command: sh /home/node/app/start.sh
todo-storage-service:
build:
dockerfile: ../Dockerfile.nodejs.prod
image: nfarshid/todo-storage-service:1.0
todo-api-gateway:
build:
dockerfile: ../Dockerfile.nodejs.prod
image: nfarshid/todo-api-gateway:1.0
command: sh /home/node/app/start.sh
todo-view:
build:
dockerfile: Dockerfile.prod
image: nfarshid/todo-view:1.0
ports:
- 4201:8080
todo-proxy:
image: nfarshid/todo-proxy:1.0