Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ services:
VSAC_API_KEY: ${VSAC_API_KEY}
MONGO_URL: mongodb://rems-user:pass@pims_remsadmin_mongo:27017
SERVER_NAME: 'CodeX REMS Administrator Prototype #1'
DOCKERED_EHR_CONTAINER_NAME: 'test-ehr'
volumes:
- rems_dev_rems-admin-sync:/rems-admin:nocopy # nocopy is important
- rems_dev_rems-admin-nodeModules:/rems-admin/node_modules
Expand Down Expand Up @@ -149,6 +150,7 @@ services:
FRONTEND_PORT: 9095
AUTH_SERVER_URI: 'http://localhost:8095'
RESOURCE_SERVER: 'http://localhost:8095/'
DOCKERED_EHR_CONTAINER_NAME: 'test-ehr'
volumes:
- rems_dev_rems-admin2-sync:/rems-admin2:nocopy # nocopy is important
- rems_dev_rems-admin2-nodeModules:/rems-admin2/node_modules
Expand All @@ -157,7 +159,6 @@ services:
pims_remsadmin_mongo:
condition: service_healthy


pims:
build:
context: ../pims
Expand All @@ -169,7 +170,7 @@ services:
environment:
REMS_ADMIN_FHIR_URL: http://rems-administrator:8090/4_0_0
MONGO_URL: mongodb://pims_remsadmin_mongo:27017/pims
EHR_RXFILL_URL: http://host.docker.internal:8080/test-ehr/ncpdp/script
EHR_RXFILL_URL: http://test-ehr:8080/test-ehr/ncpdp/script
INTERMEDIARY_FHIR_URL: http://rems-intermediary:3003/4_0_0
REMS_ADMIN_NCPDP: http://rems-administrator:8090/ncpdp/script
volumes:
Expand All @@ -181,7 +182,6 @@ services:
pims_remsadmin_mongo:
condition: service_healthy


rems-intermediary:
build:
context: '../rems-intermediary'
Expand Down
4 changes: 3 additions & 1 deletion docker-compose-local-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ services:
VSAC_API_KEY: ${VSAC_API_KEY}
MONGO_URL: mongodb://rems-user:pass@pims_remsadmin_mongo:27017
SERVER_NAME: 'CodeX REMS Administrator Prototype #1'
DOCKERED_EHR_CONTAINER_NAME: 'test-ehr'
depends_on:
pims_remsadmin_mongo:
condition: service_healthy
Expand All @@ -121,6 +122,7 @@ services:
FRONTEND_PORT: 9095
AUTH_SERVER_URI: 'http://localhost:8095'
RESOURCE_SERVER: 'http://localhost:8095/'
DOCKERED_EHR_CONTAINER_NAME: 'test-ehr'
depends_on:
pims_remsadmin_mongo:
condition: service_healthy
Expand All @@ -135,7 +137,7 @@ services:
environment:
REMS_ADMIN_FHIR_URL: http://rems-administrator:8090/4_0_0
MONGO_URL: mongodb://pims_remsadmin_mongo:27017/pims
EHR_RXFILL_URL: http://host.docker.internal:8080/test-ehr/ncpdp/script
EHR_RXFILL_URL: http://test-ehr:8080/test-ehr/ncpdp/script
INTERMEDIARY_FHIR_URL: http://rems-intermediary:3003/4_0_0
REMS_ADMIN_NCPDP: http://rems-administrator:8090/ncpdp/script
depends_on:
Expand Down
4 changes: 3 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ services:
VSAC_API_KEY: ${VSAC_API_KEY}
MONGO_URL: mongodb://rems-user:pass@pims_remsadmin_mongo:27017
SERVER_NAME: 'CodeX REMS Administrator Prototype #1'
DOCKERED_EHR_CONTAINER_NAME: 'test-ehr'
depends_on:
pims_remsadmin_mongo:
condition: service_healthy
Expand All @@ -86,6 +87,7 @@ services:
FRONTEND_PORT: 9095
AUTH_SERVER_URI: 'http://localhost:8095'
RESOURCE_SERVER: 'http://localhost:8095/'
DOCKERED_EHR_CONTAINER_NAME: 'test-ehr'
depends_on:
pims_remsadmin_mongo:
condition: service_healthy
Expand Down Expand Up @@ -117,7 +119,7 @@ services:
environment:
REMS_ADMIN_FHIR_URL: http://rems-administrator:8090/4_0_0
MONGO_URL: mongodb://pims_remsadmin_mongo:27017/pims
EHR_RXFILL_URL: http://host.docker.internal:8080/test-ehr/ncpdp/script
EHR_RXFILL_URL: http://test-ehr:8080/test-ehr/ncpdp/script
INTERMEDIARY_FHIR_URL: http://rems-intermediary:3003/4_0_0
ports:
- "5050:5050"
Expand Down
Loading