This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
DSF Upgrade From 0.5.0 to 0.5.2
Hauke Hund edited this page Sep 7, 2021
·
4 revisions
TLDR: Upgrade to docker images highmed/fhir_proxy:latest ghcr.io/highmed/fhir_proxy:0.5.2
, highmed/fhir:latest ghcr.io/highmed/fhir:0.5.2
and highmed/bpe:latest ghcr.io/highmed/bpe:0.5.2
.
Upgrading the DSF from 0.5.0 to 0.5.2 involes modifying the docker-compose.yml files and recreating the containers.
-
Modify the DSF FHIR docker-compose.yml file, replacting 0.5.0 with 0.5.2
@@ -1,7 +1,7 @@ version: '3.8' services: proxy: - image: ghcr.io/highmed/fhir_proxy:0.5.0 + image: ghcr.io/highmed/fhir_proxy:0.5.2 restart: on-failure ports: - 127.0.0.1:80:80 @@ -27,7 +27,7 @@ services: - app app: - image: ghcr.io/highmed/fhir:0.5.0 + image: ghcr.io/highmed/fhir:0.5.2 restart: on-failure secrets: - db_liquibase.password
-
Modify the DSF BPE docker-compose.yml file, replacting 0.5.0 with 0.5.2
@@ -1,7 +1,7 @@ version: '3.8' services: app: - image: ghcr.io/highmed/bpe:0.5.0 + image: ghcr.io/highmed/bpe:0.5.2 restart: on-failure secrets: - db_liquibase.password
-
Upgrade the DSF FHIR containers
From/opt/fhir
execute:docker-compose up -d && docker-compose logs -f
-
Upgrade the DSF BPE containers
From/opt/bpe
execute:docker-compose up -d && docker-compose logs -f