From f58b93843762356dec2506ae9a64f430058d66de Mon Sep 17 00:00:00 2001 From: rbuisson Date: Mon, 8 Jan 2024 18:06:17 +0100 Subject: [PATCH] OZ-196: Use OpenMRS 3.0.0-beta.16 --- .env | 5 ++--- docker-compose-openmrs.yml | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.env b/.env index fac9738..c1f124e 100644 --- a/.env +++ b/.env @@ -27,9 +27,8 @@ OPENMRS_DB_NAME=openmrs SPA_CONFIG_URLS=/openmrs/spa/ozone/ozone-frontend-config.json SPA_DEFAULT_LOCALE=en -# OpenMRS frontend and backend Docker image tags -O3_BACKEND_TAG= -O3_FRONTEND_TAG= +# OpenMRS frontend and backend Docker image tag +O3_DOCKER_IMAGE_TAG= # # MySQL diff --git a/docker-compose-openmrs.yml b/docker-compose-openmrs.yml index ce41785..107bb57 100644 --- a/docker-compose-openmrs.yml +++ b/docker-compose-openmrs.yml @@ -23,7 +23,7 @@ services: - "-f" - "http://localhost:8080/openmrs/" timeout: 5s - image: openmrs/openmrs-reference-application-3-backend:${O3_BACKEND_TAG:-nightly} + image: openmrs/openmrs-reference-application-3-backend:3.0.0-beta.16 labels: traefik.enable: "true" traefik.http.routers.openmrs.rule: "Host(`${O3_HOSTNAME}`) && PathPrefix(`/openmrs`)" @@ -57,7 +57,7 @@ services: healthcheck: test: ["CMD", "curl", "-f", "http://localhost/"] timeout: 5s - image: openmrs/openmrs-reference-application-3-frontend:${O3_FRONTEND_TAG:-nightly} + image: openmrs/openmrs-reference-application-3-frontend:3.0.0-beta.16 labels: traefik.enable: "true" traefik.http.routers.frontend.rule: "Host(`${O3_HOSTNAME}`) && PathPrefix(`/openmrs/spa/`)"