-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
74 lines (68 loc) · 2.09 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
version: '3.9'
services:
postgres:
image: postgres
container_name: postgres
restart: always
environment:
POSTGRES_PASSWORD: password
POSTGRES_DB: postgres-db
mongo:
image: mongo:3.2
command: --nojournal
container_name: mongo
orion:
#image: fiware/orion-ld:0.8.0
image: fiware/orion-ld:latest
links:
- mongo
ports:
- "57000:1026"
command: -dbhost mongo -logLevel DEBUG -logForHumans
container_name: orion
expose:
- "1026"
integration-service:
image: m2o2p-integration-service:rc
container_name: integration-service
depends_on:
- "ac"
stdin_open: true
tty: true
volumes:
- /c/Users/xtsara/Documents/workspaces/GLOVEv3/ros2_ros1_command.yaml:/home/is-workspace/src/ros2_ros1_command.yaml
ros2-fiware-bridge:
image: m2o2p-ros2-fiware-bridge:1.0.0
container_name: ros2-fiware-bridge
expose:
- "54100"
ports:
- "54100:54100"
depends_on:
- "ac"
stdin_open: true
tty: true
volumes:
- /c/Users/xtsara/Documents/workspaces/GLOVEv3/configuration.json:/home/ros2_ws/configuration.json
ac:
image: m2o2p-ac:1.0.1
depends_on:
- "postgres"
ports:
- "54000:54000"
container_name: ac
stdin_open: true
tty: true
environment:
- PYTHONUNBUFFERED=1
volumes:
- /c/Users/xtsara/Documents/workspaces/GLOVEv3/original_limits.txt:/home/ros2_ws/src/ac/src/text_files/original_limits.txt
- /c/Users/xtsara/Documents/workspaces/GLOVEv3/configuration.json:/home/ros2_ws/src/ac/src/text_files/configuration.json
webapp:
image: m2o2p-webapp:1.0.0
ports:
- "54400:54400"
container_name: webapp
depends_on:
- "ac"
stdin_open: true