-
Notifications
You must be signed in to change notification settings - Fork 839
/
docker-compose.yaml
72 lines (64 loc) · 1.3 KB
/
docker-compose.yaml
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
version: "2.0"
services:
external-envoy:
build:
context: .
dockerfile: Dockerfile-external-envoy
volumes:
- ./external-envoy.yaml:/etc/external-envoy.yaml
networks:
- envoymesh
expose:
- "80"
- "8001"
ports:
- "80:80"
- "8001:8001"
sa-frontend:
build:
context: ./sa-frontend
image: rinormaloku/sentiment-analysis-frontend:feedback
networks:
envoymesh:
aliases:
- sa-frontend
expose:
- "80"
sa-webapp:
build:
context: ./sa-webapp
image: rinormaloku/sentiment-analysis-web-app:feedback
networks:
envoymesh:
aliases:
- sa-webapp
expose:
- "8080"
environment:
- SA_LOGIC_API_URL=http://sa-logic:5000
sa-logic:
build:
context: ./sa-logic
image: rinormaloku/sentiment-analysis-logic:feedback
networks:
envoymesh:
aliases:
- sa-logic
expose:
- "5000"
sa-feedback:
build:
context: ./sa-feedback
image: rinormaloku/sentiment-analysis-feedback:feedback
networks:
envoymesh:
aliases:
- sa-feedback
expose:
- "80"
environment:
- DATABASE_DIR=/usr/db
volumes:
- "./sa-feedback/Database:/usr/db"
networks:
envoymesh: {}