Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
bonnie docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
sb-bdonohue committed Mar 4, 2024
1 parent 8536197 commit bc30b17
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
/coverage-frontend
.DS_Store
/node_modules
/bonnie-data

# Ignore IDE configuration files.
.idea
Expand Down
29 changes: 29 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
version: "3"
services:
bonnie:
image: bonnie-qdm
# build:
# context: .
ports:
- "3000:80"
depends_on:
- "bonnie-mongo"
environment:
- SAML_IDP_METADATA=${SAML_IDP_METADATA}
- SAML_SP_ENTITY_ID=${SAML_SP_ENTITY_ID}
- SAML_ASSERTION_CONSUMER_SERVICE_URL=${SAML_ASSERTION_CONSUMER_SERVICE_URL}
- SAML_SP_CERT=${SAML_SP_CERT}
- SAML_SP_KEY=${SAML_SP_KEY}
- BONNIE_PATIENT_CONV_URL=${BONNIE_PATIENT_CONV_URL}
- MONGODB_URI=${MONGODB_URI}
- SECRET_KEY_BASE=${SECRET_KEY_BASE}
- PASSENGER_APP_ENV=${PASSENGER_APP_ENV}

bonnie-mongo:
image: mongodb/mongodb-community-server:4.4.25-ubuntu2004
restart: always
container_name: 'bonnie-mongo'
ports:
- "27017:27017"
volumes:
- ./bonnie-data/data:/data/db

0 comments on commit bc30b17

Please sign in to comment.