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
23 changes: 23 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -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
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down