-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
84 lines (81 loc) · 2.37 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
version: "2.0"
services:
skill_load_unload:
image: "jupiterbak2002/skill_load_unload:latest"
restart: always
pull: true
container_name: skill_load_unload
hostname: skill_load_unload
# environment:
# - DNS_ADDRESS="8.8.8.8" # TODO: Please change the DNS default address if needed, otherwise remove this variable
ports:
- "4842:4842"
networks:
- backend
skill_insert:
image: "jupiterbak2002/skill_insert:latest"
restart: always
pull: true
container_name: skill_insert
hostname: skill_insert
# environment:
# - DNS_ADDRESS="8.8.8.8" # TODO: Please change the DNS default address if needed, otherwise remove this variable
ports:
- "4840:4840"
networks:
- backend
skill_add:
image: "jupiterbak2002/skill_add:latest"
restart: always
pull: true
container_name: skill_add
hostname: skill_add
# environment:
# - DNS_ADDRESS="8.8.8.8" # TODO: Please change the DNS default address if needed, otherwise remove this variable
ports:
- "4843:4843"
networks:
- backend
skill_monitoring:
image: "jupiterbak2002/skill_monitoring:latest"
restart: always
pull: true
container_name: skill_monitoring
hostname: skill_monitoring
# environment:
# - DNS_ADDRESS="8.8.8.8" # TODO: Please change the DNS default address if needed, otherwise remove this variable
ports:
- "8080:8080"
networks:
backend:
skill_invocation_client:
image: "jupiterbak2002/skill_invocation_client:latest"
restart: always
pull: true
container_name: skill_invocation_client
hostname: skill_invocation_client
environment:
- OPCUA_BACKEND_URL=http://skill_monitoring:8080/
# - DNS_ADDRESS="8.8.8.8" # TODO: Please change the DNS default address if needed, otherwise remove this variable
ports:
- "7400:7400"
depends_on:
- skill_monitoring
links:
- skill_monitoring
networks:
- backend
volumes:
- /temp/skill_invocation_client-shapes:/usr/src/app/shapes
- /temp/skill_invocation_client-sequences:/usr/src/app/.skillInvocationClient
networks:
backend:
volumes:
skill_invocation_client-shapes:
# driver: local
# driver_opts:
# source: /tmp/data
skill_invocation_client-sequences:
# driver: local
# driver_opts:
# source: /tmp/data