diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..62d3e94 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,23 @@ +**/.classpath +**/.dockerignore +**/.env +**/.git +**/.gitignore +**/.project +**/.settings +**/.toolstarget +**/.vs +**/.vscode +**/*.*proj.user +**/*.dbmdl +**/*.jfm +**/azds.yaml +**/charts +**/docker-compose* +**/Dockerfile* +**/node_modules +**/npm-debug.log +**/obj +**/secrets.dev.yaml +**/values.dev.yaml +README.md \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 5bf2982..9f0190d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,13 +2,14 @@ version: '3.2' services: smart-launcher: # SMART Launcher --------------------------------------------- - image: smartonfhir/smart-launcher:r4 + #image: smartonfhir/smart-launcher:r4 build: ../smart-launcher restart: unless-stopped environment: NODE_ENV : "production" LAUNCHER_BASE_URL : "http://${HOST}:${LAUNCHER_PORT}" BASE_URL : "http://${HOST}:${LAUNCHER_PORT}" + AUTH_BASE_URL : "https://auth.tcpdev.org/oxauth/restv1" FHIR_SERVER_R2 : "http://${HOST}:${HAPI_PORT_STU2}/baseDstu2" FHIR_SERVER_R3 : "http://${HOST}:${HAPI_PORT_STU3}/baseDstu3" FHIR_SERVER_R4 : "http://${HOST}:${HAPI_PORT_R4}/baseR4"