-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdocker-compose-porter.yml
113 lines (95 loc) · 3.35 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
version: '3.6'
services:
keycloak:
container_name: pas_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/
image: smalho01234/keycloak
# Create crd container
test-ehr: # Name of our service
container_name: pas_porter_test-ehr
environment:
- DOCKER_PROFILE=true
ports: # Port binding to host from docker container
- '8080:8080' # Bind port 3000 of host to 3000 of container
image: smalho01234/test-ehr
extra_hosts:
- "host.docker.internal:host-gateway"
# Create crd container
crd: # Name of our service
image: smalho01234/crd2
container_name: pas_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}
volumes:
- crd-value-set-data:/CRD/server/ValueSetCache
# Create crd container
crd-request-generator: # Name of our service
image: smalho01234/crd-request-generator
container_name: pas_porter_crd-request-generator
ports: # Port binding to host from docker container
- "3000:3000" # Bind port 3000 of host to 3000 of container
- "3001:3001"
volumes:
- crd-request-generator-data:/home/node/app/databaseData
# Create crd container
dtr: # Name of our service
image: smalho01234/dtr
container_name: pas_porter_dtr
ports: # Port binding to host from docker container
- "3005:3005" # Bind port 3000 of host to 3000 of container
volumes:
- dtr-data:/home/node/app/databaseData
# Create crd container
prior-auth: # Name of our service
image: smalho01234/prior-auth
environment:
- TOKEN_BASE_URI=http://localhost:9015
container_name: pas_porter_prior-auth
ports: # Port binding to host from docker container
- "9015:9015" # Bind port 3000 of host to 3000 of container
volumes:
- prior-auth-data:/prior-auth/databaseData
prior-auth-client: # Name of our service
image: smalho01234/prior-auth-client
container_name: pas_porter_prior-auth-client
ports: # Port binding to host from docker container
- "9090:9090" # Bind port 3000 of host to 3000 of container
# Create fhir-x12 converter container
fhir-x12: # Name of our service
image: smalho01234/fhir-x12
container_name: pas_porter_fhir-x12
ports: # Port binding to host from docker container
- "8085:8085" # Bind port 3000 of host to 3000 of container
environment:
PORT: 8085
ADMIN_TOKEN: fhir-x12-secret
volumes:
- fhir-x12-data:/usr/src/app/fhir-x12/databaseData
# Create frontend fhir-x12 frontend converter container
fhir-x12-frontend: # Name of our service
image: smalho01234/fhir-x12-frontend
container_name: pas_porter_fhir-x12-frontend
ports: # Port binding to host from docker container
- "3015:3015" # Bind port 3000 of host to 3000 of container
environment:
PORT: 3015
ADMIN_TOKEN: fhir-x12-secret
BACKEND_URL: http://localhost:8085/
volumes:
keycloak-data:
crd-value-set-data:
crd-request-generator-data:
dtr-data:
prior-auth-data:
fhir-x12-data: