Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.cnab/
.docker-sync/
Zscaler_Root_CA.pem
.env
5 changes: 4 additions & 1 deletion REMS.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
},
{
"name": "CRD-CDS-Library",
"path": "../CRD/server/CDS-Library"
"path": "../CRD/server/CDS-Library"
},
{
"path": "../CRD"
Expand All @@ -18,6 +18,9 @@
},
{
"path": "."
},
{
"path": "../pharmacy-information-system"
}
]
}
17 changes: 17 additions & 0 deletions docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,21 @@ services:
volumes:
- rems_dev_rems-sync:/REMS:nocopy # nocopy is important

pharmacy-information-system: # Name of our service
build:
context: ../pharmacy-information-system
dockerfile: Dockerfile.dev
container_name: rems_dev_pharmacy-information-system
environment:
- PORT=3010
ports: # Port binding to host from docker container
- "4200:4200"
- "3010:3010"
volumes:
- rems_dev_pharmacy-information-system-sync:/home/node/app:nocopy # nocopy is important
- /home/node/app/node_modules
- /home/node/app/backend/node_modules

volumes:
keycloak-data:
rems_dev_test-ehr-sync:
Expand All @@ -101,4 +116,6 @@ volumes:
rems_dev_dtr-sync:
external: true
rems_dev_rems-sync:
external: true
rems_dev_pharmacy-information-system-sync:
external: true
10 changes: 9 additions & 1 deletion docker-compose-porter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,15 @@ services:
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
build:
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:
10 changes: 9 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,15 @@ services:
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
build:
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:
6 changes: 5 additions & 1 deletion docker-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,8 @@ syncs:
sync_excludes: ['node_modules', 'databaseData']

rems_dev_rems-sync:
src: '.'
src: '.'

rems_dev_pharmacy-information-system-sync:
src: '../pharmacy-information-system'
sync_excludes: ['node_modules', 'backend/node_modules']