forked from mcode/rems-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-porter.yml
73 lines (63 loc) · 2.24 KB
/
docker-compose-porter.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
version: '3.6'
services:
keycloak:
container_name: rems_porter_keycloak
# command: ["-Djboss.http.port=8180"]
ports:
- '8180:8080'
environment:
- KEYCLOAK_USER=admin
- KEYCLOAK_PASSWORD=admin
- DB_VENDOR=h2
# - KEYCLOAK_IMPORT=/resources/ClientFhirServerRealm.json
volumes:
- keycloak-data:/opt/jboss/keycloak/standalone/data/
# - './resources/ClientFhirServerRealm.json:/resources/ClientFhirServerRealm.json'
image: codexrems/keycloak
# Create test-ehr container
test-ehr: # Name of our service
container_name: rems_porter_test-ehr
ports: # Port binding to host from docker container
- '8080:8080' # Bind port 3000 of host to 3000 of container
image: codexrems/test-ehr
environment:
- DOCKER_DEV_PROFILE=true
# Create crd container
crd: # Name of our service
image: codexrems/crd
container_name: rems_porter_crd
ports: # Port binding to host from docker container
- "8090:8090" # Bind port 3000 of host to 3000 of container
environment:
VSAC_API_KEY: ${VSAC_API_KEY}
# Create crd request generator container
crd-request-generator: # Name of our service
image: codexrems/crd-request-generator
container_name: rems_porter_crd-request-generator
environment:
- REACT_APP_REMS_CONFIG=true
ports: # Port binding to host from docker container
- "3000:3000" # Bind port 3000 of host to 3000 of container
- "3001:3001"
# Create dtr container
dtr: # Name of our service
image: codexrems/dtr
container_name: rems_porter_dtr
ports: # Port binding to host from docker container
- "3005:3005" # Bind port 3000 of host to 3000 of container
# # Create rems container
rems: # Name of our service
image: codexrems/rems
container_name: rems_porter_rems
ports: # Port binding to host from docker container
- "9015:9015" # Bind port 3000 of host to 3000 of container
pharmacy-information-system: # Name of our service
image: codexrems/pharmacy-information-system
container_name: rems_porter_pharmacy-information-system
environment:
- PORT=3010
ports: # Port binding to host from docker container
- "4200:4200"
- "3010:3010"
volumes:
keycloak-data: