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
11 changes: 11 additions & 0 deletions base/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,17 @@ services:
aliases:
- fhir-internal

fhir-smoketest:
image: ghcr.io/uwcirg/fhir-summary-smoketest:${FHIR_SMOKETEST_IMAGE_TAG:-latest}
depends_on:
fhir:
condition: service_healthy
restart: true
environment:
FHIR_BASE_URL: http://fhir-internal:8080/fhir
networks:
- internal

keycloak:
# use tini as init
init: true
Expand Down
1 change: 1 addition & 0 deletions dev/default.env
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ COMPOSE_PROJECT_NAME=
#SHL_CREATOR_IMAGE_TAG=
#SHL_SERVER_IMAGE_TAG=
#PROXY_IMAGE_TAG=
#FHIR_SMOKETEST_IMAGE_TAG=

# docker-compose development overrides; uncomment to enable
# COMPOSE_FILE=docker-compose.yaml:docker-compose.dev.shl-creator.yaml
Expand Down
5 changes: 5 additions & 0 deletions dev/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ services:
env_file:
keycloak.env

fhir-smoketest:
extends:
file: ../base/docker-compose.yaml
service: fhir-smoketest

fhir-auth:
extends:
file: ../base/docker-compose.yaml
Expand Down
1 change: 1 addition & 0 deletions prod/default.env
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ COMPOSE_PROJECT_NAME=
#SHL_CREATOR_IMAGE_TAG=
#SHL_SERVER_IMAGE_TAG=
#PROXY_IMAGE_TAG=
#FHIR_SMOKETEST_IMAGE_TAG=
5 changes: 5 additions & 0 deletions prod/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ services:
env_file:
fhir-auth.env

fhir-smoketest:
extends:
file: ../base/docker-compose.yaml
service: fhir-smoketest

shl-creator:
extends:
file: ../base/docker-compose.yaml
Expand Down