forked from swap-it/demo-scenario
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
64 lines (63 loc) · 1.49 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
#Licensed under the MIT License.
#For details on the licensing terms, see the LICENSE file.
#SPDX-License-Identifier: MIT
#
#Copyright 2023-2024 (c) Fraunhofer IOSB (Author: Florian Düwel)
services:
Device_Registry:
image: ghcr.io/swap-it/demo-scenario/device_registry:latest
hostname: device_registry
expose:
- 8000
ports:
- "8000:8000"
networks:
- swap_patient_zero_network
Service_Server:
image: ghcr.io/swap-it/demo-scenario/demo-scenario:latest
hostname: service_server
expose:
- 4051
- 4061
- 4071
- 4081
- 4082
- 4083
- 4091
- 4092
- 4093
ports:
- "4051:4051"
- "4061:4061"
- "4071:4071"
- "4081:4081"
- "4082:4082"
- "4083:4083"
- "4091:4091"
- "4092:4092"
- "4093:4093"
networks:
- swap_patient_zero_network
Dashboard:
image: ghcr.io/swap-it/demo-scenario/dashboard:latest
hostname: dashboard
expose:
- 8080
ports:
- "8080:8080"
networks:
- swap_patient_zero_network
Execution_Engine:
image: ghcr.io/swap-it/demo-scenario/execution-engine:demo_scenario
hostname: execution_engine
volumes:
- ./pfdl/advanced.pfdl:/execution-engine/PFDL_Examples/temp.pfdl
expose:
- 4000
ports:
- "4000:4000"
networks:
- swap_patient_zero_network
networks:
swap_patient_zero_network:
driver: "bridge"