GithubHelp home page GithubHelp logo

bahmni-docker-compose's Introduction

Bahmni Docker Compose

Docker Compose project to run Bahmni.

Bahmni Logo plus sign Docker Logo

Quick Start

Create your working directory:

Move to the location of your choice, eg, your home folder:

cd ~/

Then create the working directory and save the path:

export BAHMNI_DIR=$PWD/bahmni && \
mkdir $BAHMNI_DIR

Download the Docker Compose project itself:

export VERSION=2.0.0-SNAPSHOT && \
# Download the project && \
mvn org.apache.maven.plugins:maven-dependency-plugin:3.2.0:get -DremoteRepositories=https://nexus.mekomsolutions.net/repository/maven-public -Dartifact=net.mekomsolutions:bahmni-docker-compose:$VERSION:zip -Dtransitive=false --legacy-local-repository && \
# Unzip the project in $BAHMNI_DIR/bahmni-docker-compose-$VERSION && \
mvn org.apache.maven.plugins:maven-dependency-plugin:3.2.0:unpack -Dproject.basedir=$BAHMNI_DIR -Dartifact=net.mekomsolutions:bahmni-docker-compose:$VERSION:zip -DoutputDirectory=$BAHMNI_DIR/bahmni-docker-compose-$VERSION

Download the Bahmni distribution of your choice:

The Docker images do not provide a default Bahmni distribution so you need to first fetch one.

Fetch the distribution of your choice:

Eg, Bahmni Distro Haiti:

export DISTRO_GROUP="haiti" && \
export DISTRO_VERSION="1.2.0-SNAPSHOT" && \
# Download the distro && \
mvn org.apache.maven.plugins:maven-dependency-plugin:3.2.0:get -DremoteRepositories=https://nexus.mekomsolutions.net/repository/maven-public -Dartifact=net.mekomsolutions:bahmni-distro-$DISTRO_GROUP:$DISTRO_VERSION:zip -Dtransitive=false --legacy-local-repository && \
# Unzip the distro in $BAHMNI_DIR/bahmni-distro-$DISTRO_GROUP-$DISTRO_VERSION && \
mvn org.apache.maven.plugins:maven-dependency-plugin:3.2.0:unpack -Dproject.basedir=$BAHMNI_DIR -Dartifact=net.mekomsolutions:bahmni-distro-$DISTRO_GROUP:$DISTRO_VERSION:zip -DoutputDirectory=$BAHMNI_DIR/bahmni-distro-$DISTRO_GROUP-$DISTRO_VERSION

The Bahmni Docker project relies on environment variable to document where the Distro is to be found. As an example, you can export the following variables:

export DISTRO_PATH=$BAHMNI_DIR/bahmni-distro-$DISTRO_GROUP-$DISTRO_VERSION && \
export OPENMRS_CONFIG_PATH=$DISTRO_PATH/openmrs_config && \
export BAHMNI_CONFIG_PATH=$DISTRO_PATH/bahmni_config && \
export OPENMRS_MODULES_PATH=$DISTRO_PATH/openmrs_modules && \
export BAHMNI_APPS_PATH=$DISTRO_PATH/bahmni_emr/bahmniapps && \
export ODOO_CONFIG_PATH=$DISTRO_PATH/odoo_config && \
export ODOO_EXTRA_ADDONS=$DISTRO_PATH/odoo_addons && \
export EIP_CONFIG_PATH=$DISTRO_PATH/eip_config

The complete list of available variables can be found in .env.

Start Bahmni:

cd $BAHMNI_DIR/bahmni-docker-compose-$VERSION && \
docker-compose -p $DISTRO_GROUP up

docker-compose up

Important: This assumes that you run the docker command as the same user and in the same window in which you exported your variables. If Docker is run as sudo, the variables won't have an effect. Make sure to either export them as root, or run docker with sudo -E option to preserve the user environment. See Docker on Linux Post-install steps

Access the servers:

Bahmni EMR login screen

Default credentials:

  • username: superman
  • password: Admin123

OpenMRS login screen

Default credentials:

  • username: admin
  • password: admin

Odoo login screen

Default credentials:

Metabase login screen

Default credentials:

  • username: admin
  • password: adminADMIN!

OpenELIS login screen

Advanced

TLS support

To enable TLS support, just export the variable:

export PROXY_TLS="-DenableTLS"

and restart the application.

Default certificates are self-signed and therefore unsecured.

Provide your own valid certificates as a bound volume mounted at /etc/tls/.

Start from a backup file

To run a fresh system based on a production backup file (see here for more details) follow these steps:

  1. Unzip the backup file and rename PostgreSQL database files to .tar: Eg:
  • OpenELIS : clinlims.tar
  • Odoo : odoo.tar
  1. Move PostgreSQL database files to ./sqls/postgresql/restore folder
  2. For OpenMRS database please follow the steps here
  3. Unzip the filestore.zip file and set the variables in .env file as following: Example for a K8s-made backup:
    • Odoo:
      • ODOO_FILESTORE=<filestore-path>/odoo/filestore/odoo
    • OpenMRS:
      • OPENMRS_LUCENE_PATH=<filestore-path>/openmrs/lucene
      • OPENMRS_ACTIVEMQ_PATH=<filestore-path>/openmrs/activemq-data
      • OPENMRS_CONFIG_CHECKSUMS_PATH=<filestore-path>/openmrs/configuration_checksums
      • BAHMNI_HOME_PATH=<filestore-path>/openmrs/bahmni

Note: <filestore-path> is the path of the folder where filestore.zip file was unzipped.

  1. Start PostgreSQL:
docker-compose [-p <project-name>] up -d postgresql
  1. Start the restore service
docker-compose [-p <project-name>] -f postgres_restore.yml up

Now the restore is done, you can turn off postgresql by

docker-compose [-p <project-name>] stop postgresql

or simply start Bahmni as described here

Start with a custom MySQL dump

To start OpenMRS with your own database, just drop your data file (.sql or .sql.gz) in the ./sqls/mysql/ folder and recreate your volumes (docker-compose -v down).

Backup databases and filestores

To get the backup of services:

export BACKUP_PATH=<path/to/backup>
# Run the backup
export BACKUP_FOLDER=`date +%F-%R` && docker-compose [-p <project-name>] -f backup.docker-compose.yml up

Disable individual services

If you are developing, you may not want to run the complete Bahmni suite. You can disable services by adding docker-compose.override.yml file at the project root with the following contents:

./docker-compose.override.yml

#
# Example file to disable docker-compose.yml services.
#
version: "3.7"

services:
  odoo:
    profiles:
      - "disabled"
  postgresql:
    profiles:
      - "disabled"

You can also of course comment the services directly in the docker-compose.yml file.

Develop in Bahmn Apps

Bahmni Docker project can be used to setup a dev environment for Bahmni. This is especially easy when working on Bahmni Apps.

This can be done by using watch rsync ... command to see your changes on the running server.

  1. Clone and build Bahmni Apps locally:
cd ~/repos
git clone https://github.com/Bahmni/openmrs-module-bahmniapps.git
cd openmrs-module-bahmniapps/ui

Change JS and HTML files as you like.

  1. Run the watch rsync command to override the server files: (using watch makes it run every 2 seconds)
watch rsync -av ~/repos/openmrs-module-bahmniapps/ui/ /tmp/bahmni-distro-haiti/bahmni_emr/bahmniapps/

Debug the Java apps

The Java apps (OpenMRS, Bahmni Reports, Odoo Connect...) can be remote debugged very simply by setting a the DEBUG: "true" environment variable to the service.

Don't forget to open the port 8000 on the service as well: Eg:

...
environment:
  DEBUG: "true"
...

ports:
  - 8000:8000
...

Provide additional properties files to OpenMRS (including runtime properties)

In order to provide additional properties files to openmrs, you can drop your file in the ./properties/openmrs/ folder.

Files will be made available in the application directory after a convenient environment variable substitution is applied.

Special case of runtime properties:

In order to provide additional runtime properties to OpenMRS, you can drop a file that is named such as <name>-runtime.properties. It will be handled differently than the other properties files to be merged to the existing openmrs-runtime.properties

For instance:

Create a file named initializer-runtime.properties in properties/openmrs/, with following contents:

initializer.exclude.locations=*void_h1*

This will be added to the openmrs-runtime.properties file.

All environment variables

The complete list of available variables can be found in .env.

Dependencies

  • Docker
  • Docker Compose
  • Maven

Known limitations

  • Supported components:
    • OpenMRS
    • Bahmni Apps
    • Bahmni Config
    • Bahmni Mart
    • Metabase
    • Odoo 14 (Odoo 10 supported on branch 1.x using Odoo Connect)
    • OpenELIS

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.