Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
Add placeholders for terminology, emr (not shr), hmis, and laboratory…
Browse files Browse the repository at this point in the history
…; openmrs docker-compose
  • Loading branch information
citizenrich committed Jul 9, 2020
1 parent 62af228 commit b4183ec
Show file tree
Hide file tree
Showing 17 changed files with 47 additions and 0 deletions.
Empty file added emr/README.md
Empty file.
4 changes: 4 additions & 0 deletions emr/docker/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# EMR

This folder is a placeholder for experimenting with EMRs in Instant OpenHIE. The docker-compose file is copied from the instructions at: https://wiki.openmrs.org/display/docs/Installing+OpenMRS+on+Docker

43 changes: 43 additions & 0 deletions emr/docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
version: '2.1'

services:
openmrs-referenceapplication-mysql:
restart: "always"
image: mysql:5.6
command: "mysqld --character-set-server=utf8 --collation-server=utf8_general_ci"
environment:
MYSQL_DATABASE: ${MYSQL_DB:-openmrs}
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD:-Admin123}
MYSQL_USER: ${MYSQL_USER:-openmrs}
MYSQL_PASSWORD: ${MYSQL_PASSWORD:-Admin123}
healthcheck:
test: "exit 0"
volumes:
- openmrs-referenceapplication-mysql-data:/var/lib/mysql

openmrs-referenceapplication:
restart: "always"
image: openmrs/openmrs-reference-application-distro:demo
depends_on:
- openmrs-referenceapplication-mysql
ports:
- "8080:8080"
environment:
DB_DATABASE: ${MYSQL_DB:-openmrs}
DB_HOST: openmrs-referenceapplication-mysql
DB_USERNAME: ${MYSQL_USER:-openmrs}
DB_PASSWORD: ${MYSQL_PASSWORD:-Admin123}
DB_CREATE_TABLES: 'true'
DB_AUTO_UPDATE: 'true'
MODULE_WEB_ADMIN: 'true'
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/openmrs/"]
timeout: 20s
volumes:
- openmrs-referenceapplication-data:/usr/local/tomcat/.OpenMRS/
- /usr/local/tomcat/.OpenMRS/modules/ # do not store modules in data
- /usr/local/tomcat/.OpenMRS/owa/ # do not store owa in data

volumes:
openmrs-referenceapplication-mysql-data:
openmrs-referenceapplication-data:
Empty file added emr/kubernetes/README.md
Empty file.
Empty file added emr/tests/README.md
Empty file.
Empty file added hmis/README.md
Empty file.
Empty file added hmis/docker/README.md
Empty file.
Empty file added hmis/kubernetes/README.md
Empty file.
Empty file added hmis/tests/README.md
Empty file.
Empty file added laboratory/README.md
Empty file.
Empty file added laboratory/docker/README.md
Empty file.
Empty file added laboratory/kubernetes/README.md
Empty file.
Empty file added laboratory/tests/README.md
Empty file.
Empty file added terminology/README.md
Empty file.
Empty file added terminology/docker/README.md
Empty file.
Empty file.
Empty file added terminology/tests/README.md
Empty file.

0 comments on commit b4183ec

Please sign in to comment.