Skip to content

Commit

Permalink
Add README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
icrc-fdeniger committed May 1, 2024
1 parent 58482d8 commit 1ffee0c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<require_version>${openmrsPlatformVersion}</require_version>

<activator>org.openmrs.module.createusers.CreateUsersActivator</activator>
<require_module version="${appointments.version}">org.openmrs.module.appointments
<require_module version="${appointments.version}">org.bahmni.module.appointments
</require_module>
<require_module version="${initializer.version}">org.openmrs.module.initializer
</require_module>
Expand Down
20 changes: 0 additions & 20 deletions docker-compose.override.yml

This file was deleted.

19 changes: 13 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.7"

services:
gateway:
image: openmrs/openmrs-reference-application-3-gateway:${TAG:-qa}
Expand All @@ -11,7 +9,9 @@ services:
- "80:80"

frontend:
image: ghcr.io/icrc/openmrs-distro-sso/openmrs-frontend-qa:latest
# image: ghcr.io/icrc/openmrs-distro-sso/openmrs-frontend-qa:latest
build:
context: frontend
restart: "unless-stopped"
environment:
SPA_PATH: /openmrs/spa
Expand All @@ -25,7 +25,10 @@ services:
- backend

backend:
image: ghcr.io/icrc/openmrs-distro-sso/openmrs-backend-2.5.13:latest
# image: ghcr.io/icrc/openmrs-distro-sso/openmrs-backend-2.5.13:latest
build:
context: backend

restart: "unless-stopped"
depends_on:
- database
Expand All @@ -48,7 +51,9 @@ services:

# MariaDB
database:
image: ghcr.io/icrc/openmrs-distro-sso/mariadb-10-openmrs-2.5.12:latest
# image: ghcr.io/icrc/openmrs-distro-sso/mariadb-10-openmrs-2.5.12:latest
build:
context: database
ports:
- "3306:3306"
restart: "unless-stopped"
Expand All @@ -67,7 +72,9 @@ services:
- db-data:/var/lib/mysql

keycloak:
image: ghcr.io/icrc/openmrs-distro-sso/keycloak-24.0.3:latest
# image: ghcr.io/icrc/openmrs-distro-sso/keycloak-24.0.3:latest
build:
context: keycloak
ports:
- "8080:8080"
environment:
Expand Down
2 changes: 1 addition & 1 deletion keycloak/initialize-my-realm-and-add-users.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ while read email; do
-s email="${email}" \
-s enabled=true \
-s emailVerified=true \
-s credentials='[{"type":"password","value":"'${USERS_DEFAULT_PASSWORD}'","temporary":false}]'
-s credentials="[{\"type\":\"password\",\"value\":\"${USERS_DEFAULT_PASSWORD}\"}]"
echo "Create username ${username} with email ${email}"
done </opt/keycloak/bin/users.csv

0 comments on commit 1ffee0c

Please sign in to comment.