-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
96 lines (88 loc) · 1.92 KB
/
docker-compose.yml
File metadata and controls
96 lines (88 loc) · 1.92 KB
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
wamprouter:
image: docker.semiot.ru/wamp-router
links:
- mysqlbase
ports:
- "8080:8080"
restart: always
dataarchivingservice:
image: docker.semiot.ru/data-archiving-service
links:
- tsdb
- wamprouter
- deviceproxyservice
- triplestore
ports:
- "8787:8787"
# - "8980:8980" #JMX Port
volumes:
- /semiot-platform/:/semiot-platform/
#environment:
# SERVICE_JMX_DISABLED: "true"
# SERVICE_JMX_DOMAIN: ""
restart: always
tsdb:
image: cassandra:3.3
ports:
- "9042:9042"
volumes:
- /semiot-platform/tsdb:/var/lib/cassandra
restart: always
deviceproxyservice:
image: docker.semiot.ru/device-proxy-service
links:
- wamprouter
- triplestore
- mysqlbase
ports:
- "8181:8181"
- "9500:9500/udp"
- "3131:3131/udp"
# - "8981:8981" #JMX Port
volumes:
- /semiot-platform/felix-cache:/root/semiot-platform/device-proxy-service/felix-cache
- /semiot-platform/:/semiot-platform/
extra_hosts:
- "assets-cdn.github.com:151.101.12.133"
- "raw.githubusercontent.com:151.101.12.133"
#environment:
# SERVICE_JMX_DISABLED: "false"
# SERVICE_JMX_DOMAIN: ""
restart: always
triplestore:
image: docker.semiot.ru/triplestore
ports:
- "3030:3030"
restart: always
apigateway:
image: docker.semiot.ru/api-gateway
links:
- wamprouter
- deviceproxyservice
- dataarchivingservice
- mysqlbase
- triplestore
ports:
- "8383:8080"
- "9990:9990" #Wildfly Management and JMX Port
volumes:
- /semiot-platform/:/semiot-platform/
extra_hosts:
- "assets-cdn.github.com:151.101.12.133"
- "raw.githubusercontent.com:151.101.12.133"
restart: always
frontend:
image: docker.semiot.ru/frontend
links:
- wamprouter
- deviceproxyservice
- apigateway
ports:
- "80:80"
- "443:443"
restart: always
mysqlbase:
image: docker.semiot.ru/mysql
ports:
- "3306:3306"
restart: always