OpenMRS is an open source medical records system that is deployed around the world. You can find more information at OpenMRS.org. OpenHMIS adds hospital management features on top of OpenMRS; information about it can be found at www.OpenHMISAfrica.org. Documentation for configuring OpenHMIS can be found on the OpenMRS Wiki.
These docker images will install the OpenMRS platform, OpenMRS reference application, and the latest OpenHMIS modules. The images will also optionally create a demo database with a limited amount of patients, observations, and the minimal configuration data needed for the OpenHMIS modules to be used. The naming convention for the tags uses the following format: <Omrs Platform Version>_<Ref App Version>
. For images that do not include the reference application modules no second version number is defined.
Branches have been created to track the last released version of the major and minor releases. These branches do not include the minor and/or patch version number.
The images are tagged by OpenMRS platform and reference application versions:
OpenMRS Platform 1.11.5 with Reference App 2.3.1 (tag: 1.11.5_2.3.1)
OpenMRS Platform 1.11.5 without the reference app (tag: 1.11.5)
OpenMRS Platform 1.9.9 without the reference app (tag: 1.9.9)
To get the latest release, the following tags can be used:
Latest released OpenMRS Platform 1.11.x with the latest released Reference App 2.x (tag: 1.11_2)
Latest released OpenMRS Platform 1.11.x without the reference app (tag: 1.11)
Latest released OpenMRS Platform 1.9.x without the reference app (tag: 1.9)
The latest
tag will always be the image for the last released platform with the last released reference application.
This image assumes that MySQL will be running in separate server or another image. To set up a MySQL instance via docker:
docker run --name openmrs-mysql -v <LOCAL_PATH>:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=test -d -p=3306:3306 mysql/mysql-server:5.6
Replace <LOCAL_PATH>
with a path on your local OS that can be accessed by the docker-machine. While this volume mapping is not required, doing this will allow the data to be retained across restarts. Note that this command may not work properly when run in OS X due to a permissions error unless docker-machine-nfs is used.
Note that there are different security options for the MySQL accounts. See here for more information.
Once the MySQL image is downloaded and running you can now start the OpenHMIS image:
docker run --name openhmis-test --link openmrs-mysql:mysql -it -p 9999:8080 -e DEMO_DATA=1 -e DB_USER='root' -e DB_PASS='test' openhmis/openmrs-docker:latest
This command will start a new container called 'openhmis-test' and link it to the running MySQL instance (note that the name matches the MySQL docker image we created). We are mapping the instance port 8080 to the local port 9999 so that we can easily browse the site on development machines that already have port 8080 in use. The command also sets a few variables to configure the installation process, see below for the list of available variables. Lastly, the command is loading the image defined at openhmis/openmrs-docker under the latest tag.
Once the OpenMRS image has finished loading (look for a line like: INFO: Server startup in 232561 ms
) the server can be accessed in one of two ways:
- Via
localhost
on mapped port. Note that some host OS's will require port mapping in the VM for this to work correctly via localhost. - Via the image's ip address on the mapped port. The image ip address can be found via
docker-machine ip default
(though this might be specific to OS X).
All instances with demo data have the following users (username:password):
- Super User - admin:Admin123
- Inventory User - inventory:Inventory123
- Cashier User - cashier:Cashier123
Tells the script to load the demo data. This parameter simply needs to be set to something, the value does not matter.
The MySQL user account that will be used to prepare the database. This account must have access to create databases and users. Note that this is not the account which will be used by OpenMRS.
The MySQL account password.
The MySQL host ip address. If not specified this will be the address defined in MYSQL_PORT_3306_TCP_ADDR which gets set via the linked MySQL image.
The MySQL host port. If not specified this will be the port defined in MYSQL_PORT_3306_TCP_ADDR which gets set via the linked MySQL image.
The name to use for the OpenMRS database. If not defined this will be set to the default database name for the image selected. If a database with the specified name already exists it will not be updated and the specified OpenMRS user will be given access to it.
The MySQL user account that will be used by OpenMRS to connect to the database. If not defined this will be set to the default defined in the dockerfile.
The MySQL account password for the OpenMRS user account. If not defined this will be set to the default defined in the dockerfile.
The full path and file name to the compressed (zipped) database population script. If not defined the demo data for the specified image will be used.
Tells the script to not download and install the OpenHMIS modules. This parameter simply needs to be set to something, the value does not matter.
If you have any issues with this installation or comments/improvements, feel free to contact the OpenHMIS team on HipChat or on OpenMRS Talk.