-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
49 lines (42 loc) · 1.06 KB
/
.env
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
# Docker folder where the shared volumes are mounted
CONFIG_FOLDER=/home/docker
# Database configuration
# DB_VENDOR selects de DB strategy.
# It must be coherent with docker-compose.yaml, where database deployment is commented,
# so remember to uncomment the one you prefer
# DB_VENDOR= DERBY | MARIADB | POSTGRESQL | MYSQL
# Default DERBY
# In case DB_VENDOR is MYSQL
# DB_VENDOR=MYSQL
# DB_ROOT_PASSWORD=root
# DB_USER=fhir
# DB_PASSWORD=fhir
# DB_DB=fhirdb
# DB_HOST=mysql
# DB_PORT=3306
# In case DB_VENDOR is MARIADB
# DB_VENDOR=MARIADB
# DB_ROOT_PASSWORD=root
# DB_USER=fhir
# DB_PASSWORD=fhir
# DB_DB=fhirdb
# DB_HOST=mariadb
# DB_PORT=3306
# In case DB_VENDOR is PostgreSQL
# DB_VENDOR=POSTGRESQL
# DB_USER=fhir
# DB_PASSWORD=fhir
# DB_DB=fhirdb
# DB_HOST=postgres
# DB_PORT=5432
# KeyCloak
KEYCLOAK_USER=admin
KEYCLOAK_PASSWORD=Pa55w0rd
# HAPI OAuth 2.0 configuration
# To enable OAuth OAUTH_ENABLE=true
OAUTH_URL=http://auth:8081/user
OAUTH_ENABLE=false
# KEYCLOAK AUTH
KEYCLOAK_URL=http://keycloak:8080/auth
KEYCLOAK_REALM=HAPIFHIR
KEYCLOAK_CLIENT_ID=hapifhir-client