-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
56 lines (49 loc) · 1.17 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
version: '3.9'
services:
# mqtt-broker:
# container_name: mqtt-broker
# image: eclipse-mosquitto
# volumes:
# - ./mosquitto/config:/mosquitto/config
# - ./mosquitto:/mosquitto/data
# - ./mosquitto:/mosquitto/log
# ports:
# - 1883:1883
# - 9001:9001
analysis-module:
container_name: analysis-module
image: analysis_module:latest
ports:
- 5006:5000
expression-processor:
container_name: expression-processor
image: expression_processor:latest
ports:
- 5007:5000
depends_on:
- analysis-module
heartrate-processor:
container_name: heartrate-processor
image: heartrate_processor:latest
ports:
- 3476:5000
depends_on:
- analysis-module
linkedin-scraping:
container_name: linkedin-scraping
image: linkedin_scraping:latest
ports:
- 5000:5000
env_file: linkedin_scraping/.env
volumes:
- linkedin-storage:/profile-cache
robot-controller:
container_name: robot-controller
image: robot_controller:latest
ports:
- 5001:5000
depends_on:
- analysis-module
volumes:
linkedin-storage:
external: true