-
Notifications
You must be signed in to change notification settings - Fork 11
/
docker-compose.yml
32 lines (31 loc) · 1.06 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
# MEDEVIT <office@medevit.at>
# Docker-Compose template to run ES
#
# to start: docker-compose up -d
# to stop and fully remove including volume: docker-compose down -v
#
# FHIR API: Patient query http://localhost:8380/fhir/Patient?name=b
# REST API: Uptime http://localhost:8380/services/public/uptime
version: '3'
services:
elexis-server:
image: medevit/elexis-server:master
ports:
- "8380:8380"
- "7234:7234"
volumes:
- elexis_home:/elexis
environment:
# disable web security (requires EE if false)
- DISABLE_WEB_SECURITY=true
# enable demo database, alternatively connect to existing database
- DEMO_MODE=true
# configure external database
# - DB_TYPE=mysql
# - DB_HOST=marcos-mbp-2019.intra.herzpraxis.at:330
# - DB_DATABASE=ee_elexis
# - DB_USERNAME=elexis
# - DB_PASSWORD=elexis
# - DB_JDBC_PARAMETER_STRING=useSSL=false&serverTimezone=Europe/Zurich
volumes:
elexis_home: