Skip to content

Commit

Permalink
Readme update (#45)
Browse files Browse the repository at this point in the history
* Readme update

* Fix

* Updated docker compose
  • Loading branch information
pmanko authored Mar 7, 2022
1 parent 88695d1 commit 3d17517
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 49 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,8 @@ nb-configuration.xml
## Generated by Maven
/package/src/main/resources/openmrs-distro.sql

/custom_modules/*.omod
/custom_modules/*.omod

.flattened-pom.xml

.env
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
iSantePlus OpenMRS Distribution
===================================
# iSantePlus OpenMRS Distribution

[![Maven Build](https://github.com/IsantePlus/openmrs-distro-isanteplus/actions/workflows/main.yml/badge.svg)](https://github.com/IsantePlus/openmrs-distro-isanteplus/actions/workflows/main.yml)


## 1. Docker-based Startup

```sh
docker-compose up -d isanteplus isanteplus-mysql
```

## Streaming Pipeline Setup
```sh
```





## Additional Information
## Building

To build the distribution, run the following script from the project root directory.
Expand Down
47 changes: 1 addition & 46 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,39 +1,10 @@
version: "3.8"

services:
nginx:
image: nginx:latest
container_name: nginx
hostname: nginx
restart: unless-stopped
ports:
- "80:80" # OpenHIM Console
# - "3306:3306" # OpenHIM Console
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
- /var/www
- certs:/etc/ssl/
certgen:
image: magnitus/certificate-generator:latest
environment:
COUNTRY: US
STATE: WA
CITY: SEATTLE
ORGANIZATION: I-TECH-UW
DEPARTMENT: DIGI
EMAIL: cert@sedish-heaiti.org
DOMAINS: dev.mydomain.com;test.mydomain.com;localhost
CERTIFICATE_DURATION: 11095
OUTPUT_CERTIFICATE_INFO: "true"
KEY_FILE: "ports.key"
CERTIFICATE_FILE: "ports.crt"
volumes:
- certs:/opt/output
###
# iSantePlus
###
isanteplus:
profiles: ['main']
container_name: isanteplus
hostname: isanteplus
image: ghcr.io/isanteplus/docker-isanteplus-server:${ISANTEPLUS_DOCKER_VERSION}
Expand All @@ -52,7 +23,6 @@ services:
- "1044:1044"

isanteplus-mysql:
profiles: ['main']
image: ghcr.io/isanteplus/docker-isanteplus-db:${ISANTEPLUS_DB_VERSION}
command: mysqld --character-set-server=utf8 --collation-server=utf8_general_ci --sql_mode=""
restart: unless-stopped
Expand Down Expand Up @@ -97,21 +67,6 @@ services:
- PARQUET_PATH=
- FHIR_DEBEZIUM_CONFIG_PATH=/deployments/config.json

# QA Framework
qa:
image: ghcr.io/isanteplus/isanteplus-qaframework:${ISANTEPLUS_QA_VERSION}
container_name: qa
environment:
- ISANTEPLUS_URL=http://isanteplus:8080/openmrs
- ISANTEPLUS_USER=admin
- ISANTEPLUS_PW=Admin123
chrome:
image: selenium/standalone-chrome:latest
hostname: chrome
container_name: chrome

volumes:
certs:
driver: local
mysql:
driver: local
driver: local

0 comments on commit 3d17517

Please sign in to comment.