forked from highmed/SmICSCore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
38 lines (33 loc) · 939 Bytes
/
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
version: '3.1'
services:
smics_core:
build:
context: .
restart: unless-stopped
volumes:
- ../SmICSData/db/:/app/Resources/db/
environment:
- OPENEHR_DB=<openEHR Repo Url http://adress:port (in case of ehrbase http://adress:port/ehrbase/)>
- OPENEHR_USER=<openEHR SmICS User>
- OPENEHR_PASSWD=<openEHR SmICS User PW>
- QUERY_LIMIT=<max limit for query results>
- QUERY_TIMEOUT=<timeout in milliseconds for HTTP Connection to the OpenEHR repository>
- FIRST_DATA_ENTRY_YEAR=<Year>
ports:
- 80:80
networks:
- smics-net
smics_visualisierung:
depends_on:
- smics_core
build: ../SmICSVisualisierung
restart: unless-stopped
environment:
- SMICS_HOSTNAME=<local DNS entry of the server>
- SMICS_PORT=<Smics Core outside port>
ports:
- 3231:3231
networks:
- smics-net
networks:
smics-net: {}