-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
101 lines (91 loc) · 2.34 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# docker-compose for EIDA-manager
version: '3.3'
services:
# Driver for the SeisComP3 database
mariadb:
image: mariadb
restart: always
environment:
MYSQL_ROOT_PASSWORD: password
volumes:
- ./data/mysql:/var/lib/mysql
# Default MongoDB image for users, sessions, etc..
# Mount volume for persistent data storage
mongo:
image: mongo
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: password
volumes:
- ./data/mongo:/data/db
# EIDA Manager web application
# Mount log folder and submitted metadata folder
# Expose port 8088 to the outside
eida-manager:
image: eida-manager:1.0
restart: always
volumes:
- ./logs:/home/sysop/logs
- ./data/metadata:/home/sysop/metadata
- ./prototypes:/home/sysop/prototypes
environment:
SERVICE_PORT: 8088
SERVICE_HOST: "0.0.0.0"
ports:
- 8088:8088
- 8080:8080
# EIDA Metadaemon for metadata processing
metadaemon:
image: eida-metadaemon:1.0
restart: always
volumes:
- ./data/metadata:/home/metadaemon/metadata
- ./logs:/home/metadaemon/logs
# NodeJS Seedlink latency connector
# Can be pulled from https://github.com/Jollyfant/NodeJS-Seedlink-Latencies
seedlink-latencies:
image: seedlink-latencies:1.0
restart: always
ports:
- 8087:8087
environment:
SERVICE_PORT: 8087
SERVICE_HOST: "0.0.0.0"
# NodeJS Seedlink station connector
# Can be pulled from https://github.com/Jollyfant/NodeJS-Seedlink-Stations
seedlink-stations:
image: seedlink-stations:1.0
restart: always
ports:
- 8086:8086
environment:
SERVICE_PORT: 8086
SERVICE_HOST: "0.0.0.0"
# Expose the data proxy
seedlink-proxy:
image: seedlink-proxy:1.0
restart: always
ports:
- 8089:8089
environment:
SERVICE_PORT: 8089
SERVICE_HOST: "0.0.0.0"
# Webservice for network DOIs
doi-webservice:
image: doi-webservice:1.0
restart: always
ports:
- 8090:8090
environment:
SERVICE_PORT: 8090
SERVICE_HOST: "0.0.0.0"
# Webservice for getting the instrument frequency response
response-api:
image: response-api:1.0
restart: always
ports:
- 7000:8080
environment:
SERVICE_PORT: 8080
SERVICE_HOST: "0.0.0.0"