-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
executable file
·121 lines (108 loc) · 2.23 KB
/
docker-compose.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
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
version: "3.9"
services:
cache:
container_name: cache
image: redis:alpine
volumes:
- ./trias-extractor/data:/data
entrypoint: ["redis-server", "--appendonly", "yes"]
trias-extractor:
container_name: trias-extractor
build:
context: ./trias-extractor/
dockerfile: Dockerfile.production
environment:
FLASK_ENV: production
depends_on:
- cache
time-fc:
container_name: time-fc
build: ./time-fc/
environment:
FLASK_ENV: development
depends_on:
- cache
weather-fc:
container_name: weather-fc
build: ./weather-fc
environment:
FLASK_ENV: development
link:
- owm_proxy
owm_proxy:
container_name: owm_proxy
build: ./weather-fc/owm_proxy
environment:
FLASK_ENV: development
depends_on:
- weather-fc
price-fc:
container_name: price-fc
build: ./price-fc
environment:
FLASK_ENV: production
depends_on:
- cache
traffic-fc:
container_name: traffic-fc
build: ./traffic-fc
environment:
FLASK_ENV: production
depends_on:
- cache
environmental-fc:
container_name: environmental-fc
build: ./environmental-fc
environment:
FLASK_ENV: production
depends_on:
- cache
position-fc:
container_name: position-fc
build: ./position-fc
environment:
FLASK_ENV: production
depends_on:
- cache
active-fc:
container_name: active-fc
build: ./active-fc
environment:
FLASK_ENV: production
depends_on:
- cache
tsp-fc:
container_name: tsp-fc
build: ./tsp-fc
environment:
FLASK_ENV: production
depends_on:
- cache
panoramic-fc:
container_name: panoramic-fc
build: ./panoramic-fc
environment:
FLASK_ENV: development
depends_on:
- cache
oc-core:
container_name: oc-core
build: ./oc-core/
environment:
FLASK_ENV: development
ports:
- 5000:5000
depends_on:
- cache
link:
- trias-extractor
- cache
- active-fc
- environmental-fc
- panoramic-fc
- position-fc
- price-fc
- time-fc
- traffic-fc
- tsp-fc
- weather-fc