-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.yml
More file actions
47 lines (42 loc) · 1.03 KB
/
compose.yml
File metadata and controls
47 lines (42 loc) · 1.03 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
services:
# This service stores aggregated quality indicator results submitted
# by different data providers.
database:
build: database
restart: unless-stopped
shm_size: 128mb
environment:
POSTGRES_PASSWORD_FILE=/run/secrets/database-password
secrets:
- database-password
volumes:
- type: volume
source: data
target: /var/lib/postgresql
networks:
- database
# This service receives aggregated quality indicator results from
# data providers and answers queries for quality indicator results.
data-exchange:
image: ghcr.io/umg-minai/indicate-data-exchange-server:latest
restart: unless-stopped
env_file: database.env
environment:
DATABASE_PASSWORD_FILE=/run/secrets/database-password
secrets:
- database-password
networks:
- database
ports:
- 8080:8080
depends_on:
- database
secrets:
database-password:
file: database-password
volumes:
data:
external: no
networks:
database:
external: no